Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
black
  • Loading branch information
Gareth Williams committed May 12, 2025
commit 948bc382157402c3cdd0e8036726884444c9dad3
16 changes: 8 additions & 8 deletions tests/test_core/test_subplots/test_make_subplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -1937,14 +1937,14 @@ def test_secondary_y_subplots(self):
)

if shared_y_axes:
expected['layout']['yaxis2']['matches'] = 'y4'
expected['layout']['yaxis2']['showticklabels'] = False
expected['layout']['yaxis3']['matches'] = 'y'
expected['layout']['yaxis3']['showticklabels'] = False
expected['layout']['yaxis6']['matches'] = 'y8'
expected['layout']['yaxis6']['showticklabels'] = False
expected['layout']['yaxis7']['matches'] = 'y5'
expected['layout']['yaxis7']['showticklabels'] = False
expected["layout"]["yaxis2"]["matches"] = "y4"
expected["layout"]["yaxis2"]["showticklabels"] = False
expected["layout"]["yaxis3"]["matches"] = "y"
expected["layout"]["yaxis3"]["showticklabels"] = False
expected["layout"]["yaxis6"]["matches"] = "y8"
expected["layout"]["yaxis6"]["showticklabels"] = False
expected["layout"]["yaxis7"]["matches"] = "y5"
expected["layout"]["yaxis7"]["showticklabels"] = False

expected.update_traces(uid=None)

Expand Down