Skip to content

Commit

Permalink
FIX, TST: revert change in test_GridTopoPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-huberty committed Sep 18, 2023
1 parent 44a3407 commit 266caf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylossless/dash/tests/test_topo_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_GridTopoPlot():
offset = 2
nb_topo = 4
plot_data = topo_data.topo_values.iloc[::-1].iloc[offset : offset + nb_topo]
plot_data = plot_data.values.tolist()
plot_data = list(plot_data.T.to_dict().values())

GridTopoPlot(
2,
Expand Down

0 comments on commit 266caf2

Please sign in to comment.