summaryrefslogtreecommitdiff
path: root/blessings
diff options
context:
space:
mode:
authorErik Rose <grinch@grinchcentral.com>2013-08-30 00:30:55 -0400
committerErik Rose <grinch@grinchcentral.com>2013-08-30 00:30:55 -0400
commit42cb549ba47e1d890811c14c79a01c096a7560d6 (patch)
treee6da9c6573f43e5e1cbbd150075ccec0fd27a4b0 /blessings
parent645ca3ec98dddf79c7f29569651e4395e81a8404 (diff)
downloadblessings-42cb549ba47e1d890811c14c79a01c096a7560d6.tar.gz
Replace the weird clear() test with what was originally intended. This one actually fails before the #31 fix.1.5.1
Diffstat (limited to 'blessings')
-rw-r--r--blessings/tests.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/blessings/tests.py b/blessings/tests.py
index c7a3527..aabb497 100644
--- a/blessings/tests.py
+++ b/blessings/tests.py
@@ -259,11 +259,6 @@ def test_force_styling_none():
def test_null_callable_string():
"""Make sure NullCallableString tolerates all numbers and kinds of args it might receive."""
t = TestTerminal(stream=StringIO())
-
- # I don't promise this will keep working; it's not documented anywhere.
- # However, it's what I intend to happen in an edge case, so let's make sure
- # it works.
- eq_(t.clear(), '')
-
+ eq_(t.clear, '')
eq_(t.move(1, 2), '')
eq_(t.move_x(1), '')