Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
chore(client): fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebito91 committed Apr 7, 2020
1 parent c694027 commit 7745110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions influxdb/tests/client_test.py
Expand Up @@ -705,8 +705,8 @@ def test_get_list_series(self):
with _mocked_session(self.cli, 'get', 200, json.dumps(data)):
self.assertListEqual(
self.cli.get_list_series(),
[{'key': 'cpu_load_short,host=server01,region=us-west'},
{'key': 'memory_usage,host=server02,region=us-east'}])
['cpu_load_short,host=server01,region=us-west',
'memory_usage,host=server02,region=us-east'])

def test_get_list_series_with_measurement(self):

Expand Down

0 comments on commit 7745110

Please sign in to comment.