diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-01-18 15:16:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-01-18 15:16:01 +0100 |
commit | 23daae21afe7cab4ba07d611dbff64a78f302e8a (patch) | |
tree | 3c11031c032df88eacd871c5271732ba2e9403bb | |
parent | 46f73b6b7c05389c67b02d32c8946ca665611cba (diff) | |
download | cuirass-23daae21afe7cab4ba07d611dbff64a78f302e8a.tar cuirass-23daae21afe7cab4ba07d611dbff64a78f302e8a.tar.gz |
http: Add missing import of (ice-9 threads) in test.
Using the core binding for 'call-with-new-thread' was deprecated in 2.2
and is removed in 3.0.
* tests/http.scm: Use (ice-9 threads).
-rw-r--r-- | tests/http.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/http.scm b/tests/http.scm index 0b16790..b21fa17 100644 --- a/tests/http.scm +++ b/tests/http.scm @@ -1,6 +1,6 @@ ;;; http.scm -- tests for (cuirass http) module ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org> -;;; Copyright © 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org> ;;; @@ -30,6 +30,7 @@ (rnrs bytevectors) (srfi srfi-1) (srfi srfi-64) + (ice-9 threads) (ice-9 match)) (define (http-get-body uri) |