Skip to content

Commit

Permalink
Manually applying pull request changes because of rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
sewhyte committed Apr 8, 2024
1 parent 8a6679e commit 1a473e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gremlinapi/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def update_scenario_schedule(
*args: tuple,
**kwargs: dict,
) -> dict:
method: str = "POST"
method: str = "PUT"
guid: str = cls._error_if_not_param("guid", **kwargs)
data: dict = cls._error_if_not_json_body(**kwargs)
endpoint: str = cls._optional_team_endpoint(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_get_scenario_schedule_with_decorator(self, mock_get) -> None:
GremlinAPISchedules.get_scenario_schedule(**mock_guid), mock_data
)

@patch("requests.post")
@patch("requests.put")
def test_update_scenario_schedule_with_decorator(self, mock_get) -> None:
mock_get.return_value = requests.Response()
mock_get.return_value.status_code = 200
Expand Down

0 comments on commit 1a473e8

Please sign in to comment.