From 23daae21afe7cab4ba07d611dbff64a78f302e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 18 Jan 2020 15:16:01 +0100 Subject: 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). --- tests/http.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -;;; Copyright © 2017, 2018, 2019 Ludovic Courtès +;;; Copyright © 2017, 2018, 2019, 2020 Ludovic Courtès ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2018 Clément Lassieur ;;; @@ -30,6 +30,7 @@ (rnrs bytevectors) (srfi srfi-1) (srfi srfi-64) + (ice-9 threads) (ice-9 match)) (define (http-get-body uri) -- cgit v1.2.3