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
2 people authored and eclipse-tycho-bot committed Mar 25, 2024
1 parent a11aa9b commit 57a15e9
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(19, equinox.getVersion().getMinor());
assertTrue(equinox.getVersion().getMinor() > 13);
}

public Bundle getBundle(String id) {
Expand Down

0 comments on commit 57a15e9

Please sign in to comment.