[libsoup] http2-test: large sync and async tests are doing the opposite



commit c8cbfd4b49888d0a2f3dc03fadee6c8d64fd5631
Author: Carlos Garcia Campos <cgarcia igalia com>
Date:   Sun May 30 08:51:43 2021 +0200

    http2-test: large sync and async tests are doing the opposite
    
    We are passing async=FALSE for the async test and async=TRUE for the
    sync one.

 tests/http2-test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/tests/http2-test.c b/tests/http2-test.c
index 266691b1..161782e5 100644
--- a/tests/http2-test.c
+++ b/tests/http2-test.c
@@ -900,11 +900,11 @@ main (int argc, char **argv)
                     setup_session,
                     do_no_content_async_test,
                     teardown_session);
-        g_test_add ("/http2/large/async", Test, GINT_TO_POINTER (FALSE),
+        g_test_add ("/http2/large/async", Test, GINT_TO_POINTER (TRUE),
                     setup_session,
                     do_large_test,
                     teardown_session);
-        g_test_add ("/http2/large/sync", Test, GINT_TO_POINTER (TRUE),
+        g_test_add ("/http2/large/sync", Test, GINT_TO_POINTER (FALSE),
                     setup_session,
                     do_large_test,
                     teardown_session);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]