Skip to content

Commit

Permalink
Change resource lookup so CI doesn't fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Sep 15, 2024
1 parent 6ce4a6f commit e2f8ac6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ void testDecodeLoremIpsum(@Nonnull String name) throws Exception {
}

void decodeFromPath(@Nonnull String path) throws Exception {
byte[] bytes = Files.readAllBytes(Paths.get(TestBase.class.getResource("/" + path).toURI()));
byte[] bytes = Files.readAllBytes(Paths.get("src/testFixtures/resources/" + path));
var result = StringUtil.decodeString(bytes);
assertTrue(result.couldDecode());
}
Expand Down

0 comments on commit e2f8ac6

Please sign in to comment.