Skip to content

Commit

Permalink
Update tests/unit/test_logger.py
Browse files Browse the repository at this point in the history
Co-authored-by: Manos Vlassis <[email protected]>
  • Loading branch information
misohu and mvlassis authored Aug 28, 2024
1 parent da6e99b commit 1e9ad3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def get_log_file_path(logger: logging.Logger) -> Optional[str]:
@pytest.mark.parametrize(
"log_level, log_message, expected_prefix",
[
(logging.DEBUG, "This is a debug message", "[DEBUG]"),
(logging.INFO, "This is an info message", "[INFO]"),
(logging.WARNING, "This is a warning message", "[WARNING]"),
(logging.DEBUG, "This is a debug message", "[DEBUG]"),
(logging.ERROR, "This is an error message", "[ERROR]"),
],
)
Expand Down

0 comments on commit 1e9ad3d

Please sign in to comment.