This is the error trace I get:
java.lang.AssertionError: expected: java.lang.String<[{Song: title=Always artist=Blink 182}]> but was: java.util.ArrayList<[{Song: title=Always artist=Blink 182}]>
when I try and run this piece of code in the test case
assertEquals("[{Song: title=Always artist=Blink 182}]", p.getSongList());
p.getSongList is a method that returns and ArrayList<Song>. I've only added the one song so far but I am confused about how to change the expected output to java.util.ArrayList instead of java.lang.String. Any help would be greatly appreciated.