We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c40da1c commit 0ca9092Copy full SHA for 0ca9092
1 file changed
tests/test_misc.py
@@ -97,7 +97,7 @@ def test_save_script_parameters(tmpdir, mocker):
97
script_module = ScriptModule(["AAA", "BBB"], {"AAA": "aaa", "BBB": "bbb"})
98
script_globals = {"org.scijava.script.ScriptModule": script_module}
99
save_script_parameters(script_globals, destination=base)
100
- with open(base / "script_parameters.txt", "r") as f:
+ with open(str(base) + "/script_parameters.txt", "r") as f:
101
contents = f.read()
102
assert contents == "AAA: aaa\nBBB: bbb\n"
103
0 commit comments