summaryrefslogtreecommitdiff
path: root/ttystatus/pathname_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'ttystatus/pathname_tests.py')
-rw-r--r--ttystatus/pathname_tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ttystatus/pathname_tests.py b/ttystatus/pathname_tests.py
index f9e62ef..7f09de0 100644
--- a/ttystatus/pathname_tests.py
+++ b/ttystatus/pathname_tests.py
@@ -25,12 +25,12 @@ class PathnameTests(unittest.TestCase):
self.w = ttystatus.Pathname('foo')
def test_is_empty_initially(self):
- self.assertEqual(str(self.w), '')
+ self.assertEqual(self.w.render(), '')
def test_updates(self):
self.w.update({'foo': 'bar'})
- self.assertEqual(str(self.w), 'bar')
+ self.assertEqual(self.w.render(), 'bar')
def test_handles_update_to_other_value(self):
self.w.update({'other': 1})
- self.assertEqual(str(self.w), '')
+ self.assertEqual(self.w.render(), '')