Skip to content

Commit 13adebb

Browse files
committed
Remove uncessary script language test
We don't need to test all the langauges, just our wrapper functions. Also with ImageJ2 `2.10.0` the "Python (Jython)" script language key is not valid. Instead of writing more logic for an extra test, I opted to remove it.
1 parent 801fe3d commit 13adebb

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/test_macros_scripts.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,3 @@ def test_imagej_macro(ij):
4141
macro = get_macro()
4242
output = ij.py.run_macro(macro)
4343
assert output["out"] == 1024
44-
45-
46-
def test_python_jython_script(ij):
47-
args = {"img": get_img(ij)}
48-
script = get_script()
49-
output = ij.py.run_script("Python (Jython)", script, args)
50-
assert output["out"] == 1024

0 commit comments

Comments
 (0)