Skip to content

Commit 4767f15

Browse files
committed
Fixed bugs from fing jules
1 parent 455d610 commit 4767f15

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vm/tests/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@
3434
<dependency>
3535
<groupId>com.codenameone</groupId>
3636
<artifactId>codenameone-core</artifactId>
37-
<version>7.0.150</version>
37+
<version>7.0.214</version>
3838
<scope>test</scope>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.codenameone</groupId>
4242
<artifactId>codenameone-ios</artifactId>
43-
<version>7.0.150</version>
43+
<version>7.0.214</version>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.codenameone</groupId>
4848
<artifactId>codenameone-ios</artifactId>
49-
<version>7.0.150</version>
49+
<version>7.0.214</version>
5050
<classifier>bundle</classifier>
5151
<scope>test</scope>
5252
</dependency>

vm/tests/src/test/java/com/codename1/tools/translator/HeavyLoadBenchmarkTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public void benchmarkJavaAPITranslation() throws Exception {
4141
Path coreJar = findDependencyJar("codenameone-core");
4242

4343
// Locate IOSPort jar
44-
Path iosPortJar = findDependencyJar("codenameone-ios-7.0.150.jar"); // Look for specific jar first
44+
Path iosPortJar = findDependencyJar("codenameone-ios-7.0.214.jar"); // Look for specific jar first
4545
if (iosPortJar == null) iosPortJar = findDependencyJar("codenameone-ios"); // Fallback
4646

4747
// Locate IOS Bundle (for nativeios.jar)
48-
Path iosBundleJar = findDependencyJar("codenameone-ios-7.0.150-bundle.jar");
48+
Path iosBundleJar = findDependencyJar("codenameone-ios-7.0.214-bundle.jar");
4949
if (iosBundleJar == null) iosBundleJar = findDependencyJar("bundle");
5050

5151
// Locate HelloCodenameOne sources

0 commit comments

Comments
 (0)