Skip to content

Commit

Permalink
Merge branch 'is-12' into is-14
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed Mar 10, 2025
2 parents 58d12be + 292bb62 commit 48f56be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nmostesting/IS12Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def create_subscription_JSON(self, subscriptions):
"subscriptions": subscriptions
}

def update_subscritions(self, test, subscriptions):
def update_subscriptions(self, test, subscriptions):
"""update Nodes subscriptions"""
command_JSON = self.create_subscription_JSON(subscriptions)
response = self.send_command(test, command_JSON)
Expand Down
2 changes: 1 addition & 1 deletion nmostesting/suites/IS1201Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def test_11(self, test):
error = False
error_message = ""

response = self.is12_utils.update_subscritions(test, list(oids.keys()))
response = self.is12_utils.update_subscriptions(test, list(oids.keys()))

if not isinstance(response, list):
return test.FAIL(f"Unexpected response from subscription command: {str(response)}",
Expand Down

0 comments on commit 48f56be

Please sign in to comment.