Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed May 2, 2024
1 parent 5396f36 commit feef84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/test/test.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testNonExistant() {
TestArchive archive1 = new TestArchive(zimFile);
fail("ERROR: Archive created with invalid Zim file!");
} catch (Exception e) {
assertEquals("error 2 opening file \"" + zimFile + "\"", e.getMessage());
assertEquals("Error opening as a split file: \"" + zimFile + "\"", e.getMessage());
}
}

Expand Down

0 comments on commit feef84d

Please sign in to comment.