diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-11-23 22:27:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-23 22:45:21 +0100 |
commit | fde60bfb84dbfab7668cacd4a0d206d77affc789 (patch) | |
tree | b20c9c0619546779e2dec95dd2c1e66ec6f153a1 /tests | |
parent | d15e4b1dc25000ba0ec5ae28cd5ea73c7d0ad1c5 (diff) | |
download | guix-fde60bfb84dbfab7668cacd4a0d206d77affc789.tar guix-fde60bfb84dbfab7668cacd4a0d206d77affc789.tar.gz |
tests: Use (ice-9 threads).
'call-with-new-thread' as a core binding is deprecated in 2.2 and
removed in 3.0.
* tests/publish.scm: Use (ice-9 threads).
Diffstat (limited to 'tests')
-rw-r--r-- | tests/publish.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/publish.scm b/tests/publish.scm index 64a8ff3cae..204cfb4974 100644 --- a/tests/publish.scm +++ b/tests/publish.scm @@ -45,6 +45,7 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (srfi srfi-64) + #:use-module (ice-9 threads) #:use-module (ice-9 format) #:use-module (ice-9 match) #:use-module (ice-9 rdelim)) |