Skip to content

Commit db7db3b

Browse files
authored
reversed tests
1 parent cea2deb commit db7db3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

physics/horizontal_projectile_motion.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ def test_motion() -> None:
9292
>>> test_motion()
9393
"""
9494
v0, angle = 25, 20
95-
assert 40.97 == horizontal_distance(v0, angle)
96-
assert 3.73 == max_height(v0, angle)
97-
assert 1.74 == total_time(v0, angle)
95+
assert horizontal_distance(v0, angle) == 40.97
96+
assert max_height(v0, angle) == 3.73
97+
assert total_time(v0, angle) == 1.74
9898

9999

100100
if __name__ == "__main__":

0 commit comments

Comments
 (0)