From 57a15e943f2232f8274c6895ac6a5a6e932520d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Mon, 25 Mar 2024 08:34:28 +0200 Subject: [PATCH] Check that the 34 test is seeing an older version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Exact version check complicates things as it has to be updated for every minor bump of equinox. Co-authored-by: Christoph Läubrich --- .../bundle02/Eclipse35Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tycho-its/projects/TYCHO0367localRepositoryCrosstalk/bundle02/src/TYCHO0367localRepositoryCrosstalk/bundle02/Eclipse35Test.java b/tycho-its/projects/TYCHO0367localRepositoryCrosstalk/bundle02/src/TYCHO0367localRepositoryCrosstalk/bundle02/Eclipse35Test.java index 02bbbbd66f..d24251faf1 100644 --- a/tycho-its/projects/TYCHO0367localRepositoryCrosstalk/bundle02/src/TYCHO0367localRepositoryCrosstalk/bundle02/Eclipse35Test.java +++ b/tycho-its/projects/TYCHO0367localRepositoryCrosstalk/bundle02/src/TYCHO0367localRepositoryCrosstalk/bundle02/Eclipse35Test.java @@ -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) {