Skip to content

Commit

Permalink
Fix spelling mistake in interactive testing config
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed Jan 10, 2024
1 parent d5348e0 commit 3fa3fed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nmostesting/NMOSTesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
}, {
"spec_key": "controller-tests",
"api_key": "testquestion",
"disable_fields": ["urlpath"] if CONFIG.IS12_INTERATIVE_TESTING else ["host", "port", "urlpath"]
"disable_fields": ["urlpath"] if CONFIG.IS12_INTERACTIVE_TESTING else ["host", "port", "urlpath"]
}],
"extra_specs": [{
"spec_key": "nmos-control-feature-sets",
Expand Down
10 changes: 5 additions & 5 deletions nmostesting/suites/IS1202Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from math import floor
from xeger import Xeger

from ..Config import IS12_INTERATIVE_TESTING
from ..Config import IS12_INTERACTIVE_TESTING
from ..GenericTest import NMOSTestException
from ..ControllerTest import ControllerTest, TestingFacadeException
from ..IS12Utils import IS12Utils, NcObject, NcBlockProperties, \
Expand Down Expand Up @@ -68,7 +68,7 @@ def pre_tests_message(self):
"""
Introduction to IS-12 Invasive Tests
"""
if not IS12_INTERATIVE_TESTING:
if not IS12_INTERACTIVE_TESTING:
return

# In order to give the tests some context, a pre tests message is displayed
Expand Down Expand Up @@ -97,7 +97,7 @@ def post_tests_message(self):
"""
IS-12 Test Suite complete!
"""
if not IS12_INTERATIVE_TESTING:
if not IS12_INTERACTIVE_TESTING:
return
# Once the tests are complete this post tests message is displayed.

Expand Down Expand Up @@ -577,7 +577,7 @@ def _do_check_property_test(self, test, question, get_constraints=False, get_seq
if len(possible_properties) == 0:
return test.UNCLEAR("No testable properties in Device Model.")

if IS12_INTERATIVE_TESTING:
if IS12_INTERACTIVE_TESTING:
selected_ids = \
self._invoke_testing_facade(question, possible_properties, test_type="multi_choice")['answer_response']

Expand Down Expand Up @@ -762,7 +762,7 @@ def validate_sequences(self, test):
if len(possible_properties) == 0:
return test.UNCLEAR("No properties with ParameterConstraints in Device Model.")

if IS12_INTERATIVE_TESTING:
if IS12_INTERACTIVE_TESTING:
question = """\
From this list of sequences\
carefully select those that can be safely altered by this test.
Expand Down

0 comments on commit 3fa3fed

Please sign in to comment.