diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2022-03-18 03:54:20 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 07:54:20 +0100 |
commit | 7a50d663467f0e64ea8390e8c86269b25f312816 (patch) | |
tree | 5e8557a2b2c90a9189fae2f7ee9d7a00f6dc3c16 /tests/stdlib | |
parent | 4c76f9f1523a72f560138709642c2d51ea365b85 (diff) | |
download | Nim-7a50d663467f0e64ea8390e8c86269b25f312816.tar.gz |
Removed deprecated httpcore func (#19550)
* Remove Deprecated httpcore func * Remove Deprecated httpcore func * Fix a test with Deprecated func * Restart CI, Apple can code shit anymore I tell you
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tasynchttpserver.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/stdlib/tasynchttpserver.nim b/tests/stdlib/tasynchttpserver.nim index 77ad7a071..d4176d55a 100644 --- a/tests/stdlib/tasynchttpserver.nim +++ b/tests/stdlib/tasynchttpserver.nim @@ -39,7 +39,7 @@ proc test200() {.async.} = return clientResponse proc test(response: AsyncResponse, body: string) {.async.} = - doAssert(response.status == Http200) + doAssert(response.status == $Http200) doAssert(body == "Hello World, 200") doAssert(response.headers.hasKey("Content-Length")) doAssert(response.headers["Content-Length"] == "16") @@ -60,7 +60,7 @@ proc test404() {.async.} = return clientResponse proc test(response: AsyncResponse, body: string) {.async.} = - doAssert(response.status == Http404) + doAssert(response.status == $Http404) doAssert(body == "Hello World, 404") doAssert(response.headers.hasKey("Content-Length")) doAssert(response.headers["Content-Length"] == "16") @@ -81,7 +81,7 @@ proc testCustomEmptyHeaders() {.async.} = return clientResponse proc test(response: AsyncResponse, body: string) {.async.} = - doAssert(response.status == Http200) + doAssert(response.status == $Http200) doAssert(body == "Hello World, 200") doAssert(response.headers.hasKey("Content-Length")) doAssert(response.headers["Content-Length"] == "16") @@ -104,7 +104,7 @@ proc testCustomContentLength() {.async.} = return clientResponse proc test(response: AsyncResponse, body: string) {.async.} = - doAssert(response.status == Http200) + doAssert(response.status == $Http200) doAssert(body == "") doAssert(response.headers.hasKey("Content-Length")) doAssert(response.headers["Content-Length"] == "0") |