Skip to content

Commit

Permalink
bugfix: Fix typo (skipif)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext committed Nov 6, 2024
1 parent 5cc9cee commit ca695b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_microphone.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from speech_recognition.microphone import PyAudioWrapper


@pytest.mark.skip(sys.platform.startswith("win"), "skip on Windows")
@pytest.mark.skipif(sys.platform.startswith("win"), "skip on Windows")
class TestPyAudioWrapper:
@patch("pyaudio.PyAudio")
def test_get_pyaudio(self, PyAudio):
Expand Down

0 comments on commit ca695b0

Please sign in to comment.