Skip to content

Commit

Permalink
Check that the 34 test is seeing an older version
Browse files Browse the repository at this point in the history
Exact version check complicates things as it has to be updated for every
minor bump of equinox.

Co-authored-by: Christoph Läubrich <laeubi@laeubi-soft.de>
  • Loading branch information
akurtakov and laeubi committed Jun 14, 2024
1 parent bfcb630 commit 7052291
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void test() throws Exception {
Bundle equinox = getBundle("org.eclipse.osgi");

assertEquals(3, equinox.getVersion().getMajor());
assertEquals(20, equinox.getVersion().getMinor());
assertTrue(equinox.getVersion().getMinor() > 13);
}

public Bundle getBundle(String id) {
Expand Down

0 comments on commit 7052291

Please sign in to comment.