[+] A3 P4 Q2 TestCalculateMr

This commit is contained in:
Hykilpikonna
2021-10-24 18:21:16 -04:00
parent 0955a167cf
commit 665416e971
+2 -2
View File
@@ -28,11 +28,11 @@ class TestCalculateMr:
def test_equation_3a_branch(self) -> None:
"""Test the branch calculate_mr that contains Equation 3a."""
# TODO: Complete this unit test and remove this TODO
assert 123.82 == pytest.approx(ffwi.calculate_mr(2.4, 80))
def test_equation_3b_branch(self) -> None:
"""Test the branch calculate_mr that contains Equation 3b."""
# TODO: Complete this unit test and remove this TODO
assert 182.80 == pytest.approx(ffwi.calculate_mr(2.4, 155))
class TestCalculateM: