Closed macdema closed 8 years ago
The following is actually appending null to the http request causing it to fail
null
public List<TestInstance> getTests(int testRunId, ApiFilterValue... statusId) { return getEntityList(TestInstance.class, TestRailCommand.GET_TESTS.getCommand(), Integer.toString(testRunId) + (statusId.length > 0 ? statusId[0].append() : null)); }
On it.
The following is actually appending
null
to the http request causing it to fail