Skip to content

Commit

Permalink
no log: small fix to test
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Sep 20, 2024
1 parent 6364659 commit 9db30f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bazarr/test_logging_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ def test_false_below_error():
record = logging.LogRecord("", logging.INFO, "", 0, "", (), None)
assert not UnwantedWaitressMessageFilter().filter(record)

def test_true_error_up():
def test_true_above_error():
record = logging.LogRecord("", logging.CRITICAL, "", 0, "", (), None)
assert UnwantedWaitressMessageFilter().filter(record)

0 comments on commit 9db30f9

Please sign in to comment.