Skip to content

Commit dba6334

Browse files
minor code readability cleanup
1 parent 8ccba78 commit dba6334

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

tests/geophires_x_tests/test_economics_sam.py

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -847,28 +847,7 @@ def test_royalty_rate_schedule(self):
847847
schedule: list[float] = _get_royalty_rate_schedule(m)
848848

849849
self.assertListAlmostEqual(
850-
[
851-
0.1,
852-
0.11,
853-
0.12,
854-
0.13,
855-
0.14,
856-
0.15,
857-
0.15,
858-
0.15,
859-
0.15,
860-
0.15,
861-
0.15,
862-
0.15,
863-
0.15,
864-
0.15,
865-
0.15,
866-
0.15,
867-
0.15,
868-
0.15,
869-
0.15,
870-
0.15,
871-
],
850+
[0.1, 0.11, 0.12, 0.13, 0.14, *[0.15] * 15],
872851
schedule,
873852
places=3,
874853
)

0 commit comments

Comments
 (0)