Skip to content

Commit 2ae4881

Browse files
Update tests/plates_test.py
Co-authored-by: domfournier <dominiquef@mirageoscience.com>
1 parent d5c9e43 commit 2ae4881

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

tests/plates_test.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -223,13 +223,6 @@ def test_maxwell_plate_integration(tmp_path):
223223
maxwell_plate.geometry.rotation = 10.0
224224

225225
with pytest.warns(UserWarning, match="Plunging plate"):
226-
plate = Plate.from_maxwell_plate(maxwell_plate)
227-
228-
assert plate.params.strike_length == 100
229-
assert plate.params.dip_length == 300
230-
assert plate.params.width == 20
231-
assert plate.params.easting == 100
232-
assert plate.params.northing == 0
233-
assert plate.params.elevation == 0
234-
assert plate.params.direction == 90
235-
assert plate.params.dip == 45
226+
new_plate = Plate.from_maxwell_plate(maxwell_plate)
227+
228+
assert new_plate.params == plate.params

0 commit comments

Comments
 (0)