diff options
Diffstat (limited to 'test/t/test_dmesg.py')
-rw-r--r-- | test/t/test_dmesg.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/t/test_dmesg.py b/test/t/test_dmesg.py index a081fb6..e1001b0 100644 --- a/test/t/test_dmesg.py +++ b/test/t/test_dmesg.py @@ -1,7 +1,12 @@ +import sys + import pytest class TestDmesg: @pytest.mark.complete("dmesg -", require_cmd=True) def test_1(self, completion): - assert completion + if sys.platform == "darwin": + assert not completion # takes no options + else: + assert completion |