Skip to content

Commit

Permalink
Fix running tests against 2024-12
Browse files Browse the repository at this point in the history
  • Loading branch information
akurtakov authored and github-actions[bot] committed Dec 5, 2024
1 parent cec3bff commit 49fe9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testDependencyWithNestedJar() throws Exception {
try (BufferedReader reader = Files.newBufferedReader(file.toPath())) {
File dependency = new File(reader.readLine());
assertTrue(dependency.exists());
assertEquals("org.junit-4.13.2.v20230809-1000.jar", dependency.getName());
assertEquals("org.junit-4.13.2.v20240929-1000.jar", dependency.getName());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void testLocalMavenRepository() throws Exception {
// TODO this is only an indirect test; it should test that the bundles nested
// jars are accessible as file URLs
File antHome = new File(v01.getBasedir(),
"tycho340.test/target/work/plugins/org.apache.ant_1.10.14.v20230922-1200");
"tycho340.test/target/work/plugins/org.apache.ant_1.10.15.v20240901-1000");
Assert.assertTrue(antHome.isDirectory());
}

Expand Down

0 comments on commit 49fe9a3

Please sign in to comment.