Skip to content

Commit

Permalink
Update tests to match.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Sep 19, 2024
1 parent fb0c011 commit 740430f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions glue_ar/qt/tests/test_tool_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ def test_tool_export_call(self, extension, compression):
assert len(value) == 2
assert value[0] == "Scatter"
assert isinstance(value[1], ARVispyScatterExportOptions)
assert value[1].theta_resolution == 8
assert value[1].phi_resolution == 8
assert value[1].theta_resolution == 10
assert value[1].phi_resolution == 10
4 changes: 2 additions & 2 deletions glue_ar/qt/tests/test_tool_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ def test_tool_export_call(self, extension, compression):
scatter_method, scatter_state = state_dict["Scatter Data"]
assert scatter_method == "Scatter"
assert isinstance(scatter_state, ARVispyScatterExportOptions)
assert scatter_state.theta_resolution == 8
assert scatter_state.phi_resolution == 8
assert scatter_state.theta_resolution == 10
assert scatter_state.phi_resolution == 10

volume_method, volume_state = state_dict["Volume Data"]
assert volume_method == "Isosurface"
Expand Down

0 comments on commit 740430f

Please sign in to comment.