diff options
author | Christopher Baines <mail@cbaines.net> | 2024-12-28 10:43:00 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-12-29 10:45:31 +0000 |
commit | 7e55db0de7ae09f1ac4e437baa1bf78e92a6f4a7 (patch) | |
tree | 59ade2eebe3e266027bd79a92b42c753653b0bb5 /tests | |
parent | 4e564b48146136474539fd5c598283154751caf8 (diff) | |
download | knots-7e55db0de7ae09f1ac4e437baa1bf78e92a6f4a7.tar knots-7e55db0de7ae09f1ac4e437baa1bf78e92a6f4a7.tar.gz |
Consistently use non-blocking
Diffstat (limited to 'tests')
-rw-r--r-- | tests/non-blocking.scm | 2 | ||||
-rw-r--r-- | tests/web-server.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/non-blocking.scm b/tests/non-blocking.scm index 0f81f58..25efee8 100644 --- a/tests/non-blocking.scm +++ b/tests/non-blocking.scm @@ -26,6 +26,6 @@ (response-code (http-get uri - #:port (nonblocking-open-socket-for-uri uri))))))) + #:port (non-blocking-open-socket-for-uri uri))))))) (display "non-blocking test finished successfully\n") diff --git a/tests/web-server.scm b/tests/web-server.scm index 5a76d0f..0254795 100644 --- a/tests/web-server.scm +++ b/tests/web-server.scm @@ -25,6 +25,6 @@ (response-code (http-get uri - #:port (nonblocking-open-socket-for-uri uri))))))) + #:port (non-blocking-open-socket-for-uri uri))))))) (display "web-server test finished successfully\n") |