Skip to content

Commit

Permalink
Changed SET to PUT
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed May 8, 2024
1 parent 9813fba commit e9aa570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmostesting/IS14Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_property_value(self, test, property_id, role_path, **kwargs):
def set_property(self, test, property_id, argument, role_path, **kwargs):
"""Get value of property from object. Raises NMOSTestException on error"""
property_value_endpoint = self._create_property_value_endpoint(role_path, property_id)
return self._do_request(test, "SET", property_value_endpoint, data={"value": argument})
return self._do_request(test, "PUT", property_value_endpoint, data={"value": argument})

def invoke_method(self, test, method_id, argument, role_path, **kwargs):
"""Invoke method on Node. Raises NMOSTestException on error"""
Expand Down

0 comments on commit e9aa570

Please sign in to comment.