Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed Mar 10, 2025
1 parent 6fb2602 commit 292bb62
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 292bb62

Please sign in to comment.