Skip to content

Commit

Permalink
Run pre-commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Apr 29, 2024
1 parent a7aaa31 commit 1ee8d8c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/tests/test_general.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import fancylog
import logging

import fancylog

lateral_separator = "**************"


Expand Down Expand Up @@ -31,11 +32,9 @@ def test_logger_name(tmp_path):
logger_name = "hello_world"

# Logger name should not already exist
assert logger_name not in logging.root.manager.loggerDict.keys()
assert logger_name not in logging.root.manager.loggerDict

# Logger name should be created
fancylog.start_logging(tmp_path, fancylog, logger_name=logger_name)

assert logger_name in logging.root.manager.loggerDict.keys()


assert logger_name in logging.root.manager.loggerDict

0 comments on commit 1ee8d8c

Please sign in to comment.