Skip to content

Commit 5767d8a

Browse files
committed
Fix tests after scaling removed from pymvr
1 parent fd5e26b commit 5767d8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_fixture_1_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def process_mvr_fixture(fixture):
5151
) # even though the uni is 0 in the file, 1 is by the spec
5252
assert fixture.addresses.addresses[0].address == 1 # dtto
5353
assert fixture.gdtf_mode == "Default"
54-
assert fixture.matrix.matrix[3] == [5.0, 5.0, 5.0, 0]
54+
assert fixture.matrix.matrix[3] == [5000.0, 5000.0, 5000.0, 0]
5555

5656

5757
@pytest.mark.parametrize("mvr_scene", [("basic_fixture.mvr",)], indirect=True)

tests/test_mvr_02_read_ours.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def process_mvr_fixture(fixture):
4949
assert fixture.addresses.addresses[0].universe == 1
5050
assert fixture.addresses.addresses[0].address == 1
5151
assert fixture.gdtf_mode == "Default"
52-
assert fixture.matrix.matrix[3] == [5.0, 5.0, 5.0, 0]
52+
assert fixture.matrix.matrix[3] == [5000.0, 5000.0, 5000.0, 0]
5353

5454

5555
@pytest.mark.parametrize("mvr_scene", [("test.mvr",)], indirect=True)

0 commit comments

Comments
 (0)