Skip to content

Commit d877fac

Browse files
committed
docs: update CHANGELOG.md
1 parent 2edefa3 commit d877fac

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+
1. [#320](https://github.com/influxdata/influxdb-client-python/pull/320): Add JSONEncoder to encode query results to JSON
56

67
## 1.20.0 [2021-08-20]
78

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)