Skip to content

Commit 7b0143c

Browse files
committed
test,serve: adjust kill test to pass in ci
1 parent dd0781e commit 7b0143c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web-server-test/tests/web-server/serve-tests.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
(check-equal? status #"HTTP/1.1 200 OK")
126126
(define data-promise
127127
(delay/thread
128-
(port->bytes in)))
128+
(read-line in)))
129129
(semaphore-wait started?-sema)
130130
(define stop-thds
131131
(for/list ([_ (in-range 2)])
@@ -136,7 +136,7 @@
136136
0 1 2)
137137
(check-equal?
138138
(force data-promise)
139-
#"start\n")))))))
139+
"start")))))))
140140

141141
(module+ test
142142
(require rackunit/text-ui)

0 commit comments

Comments
 (0)