Skip to content
Snippets Groups Projects
Verified Commit 152a4c01 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix copy and paste error in assert

parent b8c1f969
No related branches found
No related tags found
No related merge requests found
Pipeline #2760 failed
......@@ -227,7 +227,7 @@ TEST_CASE("Shutdown") {
CHECK(r.url() == "https://localhost:5443/");
CHECK(r.response_code() != 200);
g.get("https://localhost:5000/", [](const Request &r) {
g.get("https://localhost:5443/", [](const Request &r) {
CHECK(r.url() == "https://localhost:5443/");
CHECK(r.error_code() == CURLE_ABORTED_BY_CALLBACK);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment