We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c9e43 commit 2ae4881Copy full SHA for 2ae4881
1 file changed
tests/plates_test.py
@@ -223,13 +223,6 @@ def test_maxwell_plate_integration(tmp_path):
223
maxwell_plate.geometry.rotation = 10.0
224
225
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
+ new_plate = Plate.from_maxwell_plate(maxwell_plate)
+
+ assert new_plate.params == plate.params
0 commit comments