8000 python3.2: Dict keys are not unicode · DASpringate/influxdb-python@6a3bc5c · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a3bc5c

Browse files
author
aviau
committed
python3.2: Dict keys are not unicode
1 parent f2886a2 commit 6a3bc5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/influxdb/client_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ def test_write_points_with_precision(self):
211211
)
212212

213213
self.assertDictEqual(
214-
{u'points': self.dummy_points,
215-
u'database': u'db',
216-
u'precision': u'n',
214+
{'points': self.dummy_points,
215+
'database': u'db',
216+
'precision': u'n',
217217
},
218218
json.loads(m.last_request.body)
219219
)

0 commit comments

Comments
 (0)
0