fix(test): TCK test suite fails properly

Signed-off-by: Calum Murray <cmurray@redhat.com>
This commit is contained in:
Calum Murray 2024-06-20 11:42:26 -04:00
parent 09bc8ba54f
commit 6022507a5d
No known key found for this signature in database
GPG Key ID: D9837BD1D90C1512
1 changed files with 1 additions and 2 deletions

View File

@ -124,8 +124,7 @@ public class TCKTestSuite {
try {
return mapper.readValue(this.getClass().getResource(fileName), TestSuiteModel.class);
} catch (IOException e) {
e.printStackTrace();
return null;
throw new RuntimeException(fileName, e);
}
})
.filter(Objects::nonNull)