We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed975b4 commit 5929fefCopy full SHA for 5929fef
influxdb/tests/dataframe_client_test.py
@@ -979,11 +979,11 @@ def test_multiquery_into_dataframe_dropna(self):
979
"columns": ["time", "value", "value2", "value3"],
980
"values": [
981
["2015-01-29T21:55:43.702900257Z",
982
- 0.55, 0.254, numpy.NaN],
+ 0.55, 0.254, np.NaN],
983
984
- 23422, 122878, numpy.NaN],
+ 23422, 122878, np.NaN],
985
["2015-06-11T20:46:02Z",
986
- 0.64, 0.5434, numpy.NaN]
+ 0.64, 0.5434, np.NaN]
987
]
988
}
989
@@ -1002,9 +1002,9 @@ def test_multiquery_into_dataframe_dropna(self):
1002
1003
1004
pd1 = pd.DataFrame(
1005
- [[0.55, 0.254, numpy.NaN],
1006
- [23422.0, 122878, numpy.NaN],
1007
- [0.64, 0.5434, numpy.NaN]],
+ [[0.55, 0.254, np.NaN],
+ [23422.0, 122878, np.NaN],
+ [0.64, 0.5434, np.NaN]],
1008
columns=['value', 'value2', 'value3'],
1009
index=pd.to_datetime([
1010
"2015-01-29 21:55:43.702900257+0000",
0 commit comments