Skip to content

Commit a2ccc4d

Browse files
committed
docs: update CHANGELOG.md
1 parent 448b7d5 commit a2ccc4d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
1. [#375](https://github.com/influxdata/influxdb-client-python/pull/375): Construct `InfluxDBError` without HTTP response
55
1. [#378](https://github.com/influxdata/influxdb-client-python/pull/378): Correct serialization DataFrame with nan values [DataFrame]
66
1. [#384](https://github.com/influxdata/influxdb-client-python/pull/384): Timeout can be specified as a `float`
7+
1. [#380](https://github.com/influxdata/influxdb-client-python/pull/380): Correct data types for querying [DataFrame]
78

89
### CI
910
1. [#370](https://github.com/influxdata/influxdb-client-python/pull/370): Add Python 3.10 to CI builds

tests/test_FluxCSVParser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ def test_pandas_column_datatype(self):
246246
self.assertEqual(13, df.dtypes.__len__())
247247
self.assertEqual('object', df.dtypes['result'].name)
248248
self.assertEqual('int64', df.dtypes['table'].name)
249-
self.assertEqual('datetime64[ns, UTC]', df.dtypes['_start'].name)
250-
self.assertEqual('datetime64[ns, UTC]', df.dtypes['_stop'].name)
249+
self.assertIn('datetime64[ns,', df.dtypes['_start'].name)
250+
self.assertIn('datetime64[ns,', df.dtypes['_stop'].name)
251251
self.assertEqual('object', df.dtypes['_field'].name)
252252
self.assertEqual('object', df.dtypes['_measurement'].name)
253253
self.assertEqual('object', df.dtypes['host'].name)

0 commit comments

Comments
 (0)