From 49d0ebfed000974ea154f8bbf6f552bb496cc07c Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Sun, 22 Jun 2025 22:06:39 -0400 Subject: [PATCH] Cleaned up http1-test. --- integration-tests/http1-test.d | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/integration-tests/http1-test.d b/integration-tests/http1-test.d index fce0e14..8ab8cc9 100755 --- a/integration-tests/http1-test.d +++ b/integration-tests/http1-test.d @@ -1,8 +1,6 @@ /+ dub.sdl: dependency "handy-http-transport" path="../" dependency "requests" version="~>2.1" - dependency "streams" path="/home/andrew/Code/github-andrewlalis/streams" - dependency "slf4d" path="/home/andrew/Code/github-andrewlalis/slf4d" +/ /** @@ -34,8 +32,9 @@ int main() { thread.join(); } info("Started server in another thread."); - Thread.sleep(msecs(100)); + Thread.sleep(msecs(100)); // Wait for the server to start. + // Send a simple GET request to the server. auto content = getContent("http://localhost:8080"); ubyte[] data = content.data; if (data.length != 13 || (cast(string) data) != "Hello, world!") {