We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f073e5 commit 5793db1Copy full SHA for 5793db1
ADR/Components/Aerodynamic_components/tests/test_VS.py
@@ -1,4 +1,4 @@
1
-from ADR.Components.Aerodynamic_components.HS import HS
+from ADR.Components.Aerodynamic_components.VS import VS
2
import numpy.testing as npt
3
import pytest
4
@@ -22,11 +22,11 @@ def aerodynamic_surface():
22
"x": 1,
23
"z": 1,
24
}
25
- aerodynamic_surface = HS(aerodynamic_surface_parameters)
+ aerodynamic_surface = VS(aerodynamic_surface_parameters)
26
return aerodynamic_surface
27
28
29
def test_calc_area(aerodynamic_surface):
30
aerodynamic_surface.calc_area()
31
new_area = aerodynamic_surface.area
32
- npt.assert_almost_equal(new_area, 2.375, decimal=3)
+ npt.assert_almost_equal(new_area, 1.1875, decimal=3)
0 commit comments