Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Feb 3, 2022
1 parent 4a3dc9c commit 04e76e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/test_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_logger_dict():
logger = FormatAdapter(log)
mydict = {1: "one", 2: "two"}
logger.info(mydict)
assert str(log.last_msg) == "1: 'one', 2: 'two'}"
assert str(log.last_msg) == "{1: 'one', 2: 'two'}"


def test_logger_exception():
Expand Down

0 comments on commit 04e76e0

Please sign in to comment.