Skip to content

Commit

Permalink
Update test_service_catalog.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tuckertt authored Aug 14, 2024
1 parent 0ab11b8 commit ff82781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/plugins/modules/test_service_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def checkout_cart(*args):

def test_submit_order(self, mocker):
def submit_order(*args):
assert args[0] == "/api/sn_sc/servicecatalog/cart/checkout"
assert args[0] == "/api/sn_sc/servicecatalog/cart/submit_order"
return client.Response(200, json.dumps(dict(result=dict(key="value"))))

client_mock = client.Client("https://my-host", "username", "password")
Expand Down

0 comments on commit ff82781

Please sign in to comment.