Skip to content

Commit 5929fef

Browse files
committed
chore(dataframe_client_test): fix incorrect package naming convention
1 parent ed975b4 commit 5929fef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

influxdb/tests/dataframe_client_test.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -979,11 +979,11 @@ def test_multiquery_into_dataframe_dropna(self):
979979
"columns": ["time", "value", "value2", "value3"],
980980
"values": [
981981
["2015-01-29T21:55:43.702900257Z",
982-
0.55, 0.254, numpy.NaN],
982+
0.55, 0.254, np.NaN],
983983
["2015-01-29T21:55:43.702900257Z",
984-
23422, 122878, numpy.NaN],
984+
23422, 122878, np.NaN],
985985
["2015-06-11T20:46:02Z",
986-
0.64, 0.5434, numpy.NaN]
986+
0.64, 0.5434, np.NaN]
987987
]
988988
}
989989
]
@@ -1002,9 +1002,9 @@ def test_multiquery_into_dataframe_dropna(self):
10021002
}
10031003

10041004
pd1 = pd.DataFrame(
1005-
[[0.55, 0.254, numpy.NaN],
1006-
[23422.0, 122878, numpy.NaN],
1007-
[0.64, 0.5434, numpy.NaN]],
1005+
[[0.55, 0.254, np.NaN],
1006+
[23422.0, 122878, np.NaN],
1007+
[0.64, 0.5434, np.NaN]],
10081008
columns=['value', 'value2', 'value3'],
10091009
index=pd.to_datetime([
10101010
"2015-01-29 21:55:43.702900257+0000",

0 commit comments

Comments
 (0)