From 292bb62fc76aa5cc9148074acc44fbaeff091788 Mon Sep 17 00:00:00 2001 From: "Jonathan Thorpe (Sony)" Date: Mon, 10 Mar 2025 13:53:40 +0000 Subject: [PATCH] Fixed typo --- nmostesting/IS12Utils.py | 2 +- nmostesting/suites/IS1201Test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nmostesting/IS12Utils.py b/nmostesting/IS12Utils.py index a6035c38..6b8b0d04 100644 --- a/nmostesting/IS12Utils.py +++ b/nmostesting/IS12Utils.py @@ -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) diff --git a/nmostesting/suites/IS1201Test.py b/nmostesting/suites/IS1201Test.py index 163d9093..115cdb0c 100644 --- a/nmostesting/suites/IS1201Test.py +++ b/nmostesting/suites/IS1201Test.py @@ -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)}",