Ad
  • Default User Avatar

    I wrote the Kata in python and when I run the test, my solution doesn't pass a case, in particular, the test did is testing(revrot("123456987654", 6), "234561876549") although the response of my solution is "234561876549" the assert message showed is: '234561234561' should equal '234561876549', I don't understand why the test take the parameter "234561234561" when should be "123456987654". Could someone explain which is the behavior of the test?