Skip to content

Commit

Permalink
Undo accidental typos fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mribeirodantas committed Oct 19, 2024
1 parent f82a7bf commit 5fea053
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/pipelines/test_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def test_launch_web_gui_missing_keys(self, mock_poll_nfcore_web_api):

@mock.patch(
"nf_core.utils.poll_nfcore_web_api",
side_effect=[{"api_url": "foo", "web_url": "bar", "status": "received"}],
side_effect=[{"api_url": "foo", "web_url": "bar", "status": "recieved"}],
)
@mock.patch("webbrowser.open")
@mock.patch("nf_core.utils.wait_cli_function")
Expand Down
2 changes: 1 addition & 1 deletion tests/pipelines/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def __init__(self, data, status_code):
return MockResponse(response_data, 200)

if kwargs["url"] == "valid_url_success":
response_data = {"status": "received", "api_url": "https://nf-co.re", "web_url": "https://nf-co.re"}
response_data = {"status": "recieved", "api_url": "https://nf-co.re", "web_url": "https://nf-co.re"}
return MockResponse(response_data, 200)

@mock.patch("requests.post", side_effect=mocked_requests_post)
Expand Down

0 comments on commit 5fea053

Please sign in to comment.