Skip to content

Commit 85363f6

Browse files
committed
fix: py35 compat
1 parent 2c01e57 commit 85363f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nitransforms/tests/test_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def test_apply_linear_transform(tmpdir, data_path, get_data, image_orientation,
133133
# skip test if command is not available on host
134134
exe = cmd.split(" ", 1)[0]
135135
if not shutil.which(exe):
136-
pytest.skip(f"Command {exe} not found on host")
136+
pytest.skip("Command {} not found on host".format(exe))
137137

138138
exit_code = check_call([cmd], shell=True)
139139
assert exit_code == 0

0 commit comments

Comments
 (0)