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 f020ae9 commit 3e39f32Copy full SHA for 3e39f32
plotly/tests/test_optional/test_utils/test_utils.py
@@ -11,7 +11,7 @@
11
import numpy as np
12
import json
13
import pandas as pd
14
-import six
+import sys
15
from pandas.util.testing import assert_series_equal
16
import matplotlib.pyplot as plt
17
@@ -76,7 +76,7 @@ def test_encode_as_pandas(self):
76
77
# should succeed when we've got specific pandas thingies
78
res = utils.PlotlyJSONEncoder.encode_as_pandas(pd.NaT)
79
- self.assertIs(res, None)
+ self.assertTrue(res is None)
80
81
def test_encode_as_numpy(self):
82
0 commit comments