Skip to content

Commit 9d753a2

Browse files
committed
docs: update CHANGELOG.md
1 parent abbaa3b commit 9d753a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### Features
44
1. [#319](https://github.com/influxdata/influxdb-client-python/pull/319): Add supports for array expressions in query parameters
5+
2. [#320](https://github.com/influxdata/influxdb-client-python/pull/320): Add JSONEncoder to encode query results to JSON
56

67
### Bug Fixes
78
1. [#321](https://github.com/influxdata/influxdb-client-python/pull/321): Fixes return type for dashboard when `include=properties` is used

tests/test_FluxCSVParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def test_to_json(self):
207207
",,1,value,python_client_test,2010-02-27T04:48:32.752600083Z,2020-02-27T16:48:32.752600083Z,2020-02-27T16:30:00Z,2,test2\n"
208208

209209
tables = self._parse_to_tables(data=data)
210-
with open('query_output.json', 'r') as file:
210+
with open('tests/query_output.json', 'r') as file:
211211
query_output = file.read()
212212
import json
213213
self.assertEqual(query_output, json.dumps(tables, cls=FluxStructureEncoder, indent=2))

0 commit comments

Comments
 (0)