Skip to content

Commit

Permalink
Update tests/test_flusher.py
Browse files Browse the repository at this point in the history
  • Loading branch information
curusarn authored Dec 4, 2023
1 parent 79e0e52 commit 96c591c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flusher.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def uploader(frame):
self.assertFalse(fw.should_run)

# test relies on overriding excepthook which is available from 3.8+
@pytest.mark.skipif(sys.version_info <= (3, 7))
@unittest.skipIf(sys.version_info <= (3, 7))
def test_shutdown_dont_raise_exception_in_thread(self):
original_excepthook = threading.excepthook
threading.excepthook = mock.Mock()
Expand Down

0 comments on commit 96c591c

Please sign in to comment.