Fixed typo in code example

pull/1222/head
Simon Willison 2021-01-31 00:49:09 -08:00 zatwierdzone przez GitHub
rodzic dde3c500c7
commit beb98bf454
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -204,7 +204,7 @@ Here's a test for that plugin that mocks the HTTPX outbound request:
response = await datasette.client.post("/-/fetch-url", data={
"url": "https://www.example.com/"
})
asert response.text == "Hello world"
assert response.text == "Hello world"
outbound_request = httpx_mock.get_request()
assert outbound_request.url == "https://www.example.com/"