Skip to content

Commit 86c17ee

Browse files
committed
ASSYNC_THREAD -> ASYNC_THREAD
1 parent 9576e42 commit 86c17ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_emscripten_async_wget2.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,14 +343,14 @@ int main() {
343343
time_elapsed = emscripten_get_now();
344344

345345
http* http1 = new http("https://github.com", http::REQUEST_GET, "emscripten_main.zip");
346-
http1->runRequest("/emscripten-core/emscripten/archive/main.zip", http::ASSYNC_THREAD);
346+
http1->runRequest("/emscripten-core/emscripten/archive/main.zip", http::ASYNC_THREAD);
347347

348348
http* http2 = new http("https://github.com",http::REQUEST_GET, "wolfviking_master.zip");
349-
http2->runRequest("/wolfviking0/image.js/archive/master.zip", http::ASSYNC_THREAD);
349+
http2->runRequest("/wolfviking0/image.js/archive/master.zip", http::ASYNC_THREAD);
350350
http2->abortRequest();
351351

352352
http* http3 = new http("https://raw.github.com", http::REQUEST_GET);
353-
http3->runRequest("/emscripten-core/emscripten/main/LICENSE", http::ASSYNC_THREAD);
353+
http3->runRequest("/emscripten-core/emscripten/main/LICENSE", http::ASYNC_THREAD);
354354

355355
num_request++;
356356
emscripten_async_call(wait_http, http1, 500);

0 commit comments

Comments
 (0)