Skip to content

Commit

Permalink
GREATUK-503 Fix Incomplete regular expression for hostnames
Browse files Browse the repository at this point in the history
  • Loading branch information
hal274 committed Apr 12, 2024
1 parent 22aba61 commit 001c6b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataservices/tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def cia_factbook_data(requests_mocker):

@pytest.fixture()
def cia_factbook_request_mock(requests_mocker, cia_factbook_data):
return requests_mocker.get(re.compile('https://raw.githubusercontent.com/.*'), json=cia_factbook_data)
return requests_mocker.get(re.compile('https://raw\.githubusercontent\.com/.*'), json=cia_factbook_data)


@pytest.mark.django_db
Expand Down

0 comments on commit 001c6b5

Please sign in to comment.