Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
#33 Fix test on Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcs committed Dec 8, 2015
1 parent 32e4f42 commit 7cca722
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ def test_default_format_kv():
dict_value = {'dict_key': 50 * 'abc '}
lines = DefaultFormatter.format_kv('my_key', dict_value).strip().splitlines()
assert len(lines) == 3
assert len(lines[1]) == 110


def test_debug_format_kv():
Expand All @@ -29,7 +28,6 @@ def test_debug_format_kv():
dict_value = {'dict_key': 50 * 'abc '}
lines = DebugFormatter.format_kv('my_key', dict_value).splitlines()
assert len(lines) == 3
assert len(lines[1]) == 159


def test_init_logger():
Expand Down

0 comments on commit 7cca722

Please sign in to comment.