Skip to content

Commit 212b784

Browse files
committed
docs: update CHANGELOG.md
1 parent ed1dc87 commit 212b784

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
@@ -3,6 +3,7 @@
33
### Bug Fixes
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]
6+
1. [#380](https://github.com/influxdata/influxdb-client-python/pull/380): Correct data types for querying [DataFrame]
67

78
### CI
89
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)