reversed tests

This commit is contained in:
Aviv Faraj 2021-09-07 09:31:36 -04:00 committed by GitHub
parent cea2deb0c8
commit db7db3b370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,9 +92,9 @@ def test_motion() -> None:
>>> test_motion()
"""
v0, angle = 25, 20
assert 40.97 == horizontal_distance(v0, angle)
assert 3.73 == max_height(v0, angle)
assert 1.74 == total_time(v0, angle)
assert horizontal_distance(v0, angle) == 40.97
assert max_height(v0, angle) == 3.73
assert total_time(v0, angle) == 1.74
if __name__ == "__main__":