summaryrefslogtreecommitdiff
path: root/tests/commands/test_envelope.py
diff options
context:
space:
mode:
authorLucas Hoffmann <lucc@posteo.de>2019-11-04 08:00:10 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2019-11-06 10:54:00 +0000
commit414ca6c4b57752d139598e95e06009c55ff4543c (patch)
treea77d60aaf05f2c75224df95f7481f7328e414e7a /tests/commands/test_envelope.py
parentbbb96525c08f0c6ee9fc93e0dd0ccb3abfd1dca8 (diff)
Remove unicode literals syntax from python2
Diffstat (limited to 'tests/commands/test_envelope.py')
-rw-r--r--tests/commands/test_envelope.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/commands/test_envelope.py b/tests/commands/test_envelope.py
index a5d86d94..d14cbf1f 100644
--- a/tests/commands/test_envelope.py
+++ b/tests/commands/test_envelope.py
@@ -120,28 +120,28 @@ class TestTagCommands(unittest.TestCase):
self.assertListEqual(sorted(actual), sorted(expected))
def test_add_new_tags(self):
- self._test(u'four', 'add', ['one', 'two', 'three', 'four'])
+ self._test('four', 'add', ['one', 'two', 'three', 'four'])
def test_adding_existing_tags_has_no_effect(self):
- self._test(u'one', 'add', ['one', 'two', 'three'])
+ self._test('one', 'add', ['one', 'two', 'three'])
def test_remove_existing_tags(self):
- self._test(u'one', 'remove', ['two', 'three'])
+ self._test('one', 'remove', ['two', 'three'])
def test_remove_non_existing_tags_has_no_effect(self):
- self._test(u'four', 'remove', ['one', 'two', 'three'])
+ self._test('four', 'remove', ['one', 'two', 'three'])
def test_set_tags(self):
- self._test(u'a,b,c', 'set', ['a', 'b', 'c'])
+ self._test('a,b,c', 'set', ['a', 'b', 'c'])
def test_toggle_will_remove_existing_tags(self):
- self._test(u'one', 'toggle', ['two', 'three'])
+ self._test('one', 'toggle', ['two', 'three'])
def test_toggle_will_add_new_tags(self):
- self._test(u'four', 'toggle', ['one', 'two', 'three', 'four'])
+ self._test('four', 'toggle', ['one', 'two', 'three', 'four'])
def test_toggle_can_remove_and_add_in_one_run(self):
- self._test(u'one,four', 'toggle', ['two', 'three', 'four'])
+ self._test('one,four', 'toggle', ['two', 'three', 'four'])
class TestSignCommand(unittest.TestCase):