summaryrefslogtreecommitdiff
path: root/test/unit/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_shell.py')
-rw-r--r--test/unit/test_shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/test_shell.py b/test/unit/test_shell.py
index adf3776..eb70a92 100644
--- a/test/unit/test_shell.py
+++ b/test/unit/test_shell.py
@@ -400,7 +400,7 @@ class TestShell(unittest.TestCase):
def test_list_json(self, connection):
connection.return_value.get_account.side_effect = [
[None, [{'name': 'container'}]],
- [None, [{'name': u'\u263A', 'some-custom-key': 'and value'}]],
+ [None, [{'name': '\u263A', 'some-custom-key': 'and value'}]],
[None, []],
]
@@ -412,7 +412,7 @@ class TestShell(unittest.TestCase):
connection.return_value.get_account.assert_has_calls(calls)
listing = [{'name': 'container'},
- {'name': u'\u263A', 'some-custom-key': 'and value'}]
+ {'name': '\u263A', 'some-custom-key': 'and value'}]
expected = json.dumps(listing, sort_keys=True, indent=2) + '\n'
self.assertEqual(output.out, expected)