We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d0c99 commit 6621a65Copy full SHA for 6621a65
tests/maverick_functions_tests.py
@@ -50,8 +50,9 @@ def test_mav_ti_in_use():
50
"""
51
Tests if mav_params_parser() is working correctlly.
52
53
- assert mw.mav_ti_in_use("smalldata/parameters.txt") is True
54
- assert mw.mav_ti_in_use("smalldata/parameters_f.txt") is False
+ assert mw.mav_ti_in_use({"thermodynamic_on": "1"}) is True
+ assert mw.mav_ti_in_use({"thermodynamic_on": "0"}) is False
55
+ assert mw.mav_ti_in_use({}) is True
56
57
58
def test_mav_alpha_failsafe():
0 commit comments