(engine, pretty)
| 222 | |
| 223 | |
| 224 | def test_object_array(engine, pretty): |
| 225 | fig = px.scatter(px.data.tips(), x="total_bill", y="tip", custom_data=["sex"]) |
| 226 | result = fig.to_plotly_json() |
| 227 | check_roundtrip(result, engine=engine, pretty=pretty) |
| 228 | |
| 229 | |
| 230 | def test_nonstring_key(engine, pretty): |
nothing calls this directly
no test coverage detected