From db7db3b3709ccb0b9c5a34e1b381b4b2693906f5 Mon Sep 17 00:00:00 2001 From: Aviv Faraj <73610201+avivfaraj@users.noreply.github.com> Date: Tue, 7 Sep 2021 09:31:36 -0400 Subject: [PATCH] reversed tests --- physics/horizontal_projectile_motion.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/physics/horizontal_projectile_motion.py b/physics/horizontal_projectile_motion.py index 7ec370579..551c4089c 100644 --- a/physics/horizontal_projectile_motion.py +++ b/physics/horizontal_projectile_motion.py @@ -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__":