(connpath)
| 14 | # This test runs first! |
| 15 | @with_sitl |
| 16 | def test_parameter(connpath): |
| 17 | v = connect(connpath, wait_ready=True) |
| 18 | |
| 19 | # Perform a simple parameter check |
| 20 | assert_equals(type(v.parameters['THR_MIN']), float) |
| 21 | |
| 22 | v.close() |
| 23 | |
| 24 | |
| 25 | # This test runs second. Add as many tests as you like |