Skip to content

Commit

Permalink
pyflakes fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
itamarst committed Dec 8, 2014
1 parent 8d8a245 commit b196306
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions eliot/tests/test_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,9 +748,10 @@ def test_toString(self):
["/", "/2/1"])


def test_toString(self):
def test_fromString(self):
"""
L{TaskLevel.toString} deserializes the output of L{TaskLevel.toString}.
L{TaskLevel.fromString} deserializes the output of
L{TaskLevel.toString}.
"""
self.assertEqual([TaskLevel.fromString("/"), TaskLevel.fromString("/2/1")],
[TaskLevel(level=[]), TaskLevel(level=[2, 1])])
Expand Down
1 change: 0 additions & 1 deletion eliot/tests/test_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from __future__ import unicode_literals

from six import text_type as unicode
from unittest import TestCase
import time

Expand Down

0 comments on commit b196306

Please sign in to comment.