Tower of Hanoi Test cases are failing?

Please find the code below

@Ans
Read this statement from the problem - “Print the instructions to move all the rings from peg A to B in a new line each.”

You are moving the pegs from A to C while you are required to move them from A to B.

Hi Tarun, Thanks for the response. I am little confused here. Using a helper stick (peg), shift all rings from peg A to peg B using peg C. All rings are initally placed in ascending order, smallest being on top. No bigger ring can be placed over a smaller ring. Here A is source and B is destination and helper is C. I am also printing the same thing (https://ide.codingblocks.com/s/177413). System.out.println(“Moving ring " + num +” from “+src +” to "+dst);

@Ans
Change the calling statement
m.move(num, ‘A’,‘B’,‘C’);

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.