I've been working on creating a unit test for my java project, and my test keeps on failing even if I made no assertions.
After reading through the stacktrace, I noticed that a method in the retsIQ library I am using is throwing an assertion error. Is there anyway I can ignore this? I'd really rather not decompile and recompile the module.
I should also mention that this exact code works fine if it's not run as a test.
Here is a picture of my test:

Here is a picture of it it not running in a test:

From the stacktrace, it looks like there is unexpected data found when parsing the response. The best way to diagnose the problem would set a breakpoint in
SearchCompactReader.parse()(around line 16), and run the test in the debugger.BTW, your test isn't a unit test. A unit test tests a single class or method in isolation. Your test appears to be hitting a live server.