Skip to content

Commit f361a24

Browse files
committed
Use Fiji stable instead of latest
With Java 8 and Fiji latest line 73 in tests/test_ops.py fails due to an incompatability between the new compilation of Fiji and nashorn from Java 8. The error: org/openjdk/nashorn/api/scripting/NashornScriptingEngineFactory has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0.
1 parent f3e8fe1 commit f361a24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ modes="
77
| Testing ImageJ2 + original ImageJ |--legacy=true
88
| Testing ImageJ2 standalone |--legacy=false
99
| Testing Fiji Is Just ImageJ(2) |--ij=sc.fiji:fiji
10-
| Testing locally wrapped Fiji.app |--ij=Fiji
10+
| Testing locally wrapped Fiji.app |--ij=Fiji.app
1111
| Testing ImageJ2 version 2.10.0 |--ij=2.10.0
1212
| Testing ImageJ2 version 2.14.0 |--ij=2.14.0
1313
"
@@ -16,8 +16,8 @@ if [ ! -d Fiji.app ]
1616
then
1717
# No locally available Fiji.app; download one.
1818
echo "-- Downloading and unpacking Fiji.app --"
19-
curl -fsLO https://downloads.imagej.net/fiji/latest/fiji-latest-portable-nojava.zip
20-
unzip fiji-latest-portable-nojava.zip
19+
curl -fsLO https://downloads.imagej.net/fiji/stable/fiji-stable-portable-nojava.zip
20+
unzip fiji-stable-portable-nojava.zip
2121
echo
2222
fi
2323

0 commit comments

Comments
 (0)