Skip to content

Commit 3d76765

Browse files
committed
test: handle another error when RST server is not found
1 parent 68c805d commit 3d76765

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

http-easy-test/net/http-easy/http-easy.rkt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@
466466
(get-output-string out)))
467467
;; The server is not available on older versions of
468468
;; Racket, so deal with that possibility.
469-
(unless (regexp-match? #rx"open-input-file: cannot open module file" err)
469+
(unless (or (regexp-match? #rx"standard-module-name-resolver: collection not found" err)
470+
(regexp-match? #rx"open-input-file: cannot open module file" err))
470471
(fail-check err))]))
471472
(lambda ()
472473
(control 'interrupt)

0 commit comments

Comments
 (0)