Skip to content

Commit

Permalink
FIX: command
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Oct 27, 2023
1 parent 614f519 commit 1e3c06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/commands/tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def test_sys_info():
with ArgvSetter((raw_fname,)):
with pytest.raises(SystemExit, match="1"):
mne_sys_info.run()
with ArgvSetter(["--no-check-version"]) as out:
with ArgvSetter(("--no-check-version",)) as out:
mne_sys_info.run()
assert "numpy" in out.stdout.getvalue()

Expand Down

0 comments on commit 1e3c06d

Please sign in to comment.