Skip to content

Commit 7745f23

Browse files
straight equality test
1 parent 773b669 commit 7745f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/tests/test_core/test_px/test_pandas_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
def test_pandas_equiv(pandas_fn, px_fn):
2424
pd.options.plotting.backend = "plotly"
2525
df = pd.DataFrame(np.random.randn(100, 4), columns=list("ABCD")).cumsum()
26-
assert pandas_fn(df).to_json() == px_fn(df).to_json()
26+
assert pandas_fn(df) == px_fn(df)

0 commit comments

Comments
 (0)