summaryrefslogtreecommitdiff
path: root/tests/commands/test_init.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/commands/test_init.py')
-rw-r--r--tests/commands/test_init.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/commands/test_init.py b/tests/commands/test_init.py
index 29828b9a..f7574977 100644
--- a/tests/commands/test_init.py
+++ b/tests/commands/test_init.py
@@ -33,7 +33,7 @@ class TestCommandFactory(unittest.TestCase):
cmd = commands.commandfactory('save --all /foo', mode='thread')
self.assertIsInstance(cmd, thread.SaveAttachmentCommand)
self.assertTrue(cmd.all)
- self.assertEqual(cmd.path, u'/foo')
+ self.assertEqual(cmd.path, '/foo')
class TestRegisterCommand(unittest.TestCase):