diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2021-05-30 08:51:43 +0200 |
---|---|---|
committer | Carlos Garcia Campos <cgarcia@igalia.com> | 2021-05-30 08:51:43 +0200 |
commit | c8cbfd4b49888d0a2f3dc03fadee6c8d64fd5631 (patch) | |
tree | c3384b7e99ed4cbd273dcd6b64e9f9bfbfb33483 /tests/http2-test.c | |
parent | 2f32d42c74a1c64bcfdbdb431a995595aceed699 (diff) | |
download | libsoup-c8cbfd4b49888d0a2f3dc03fadee6c8d64fd5631.tar.gz |
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.
Diffstat (limited to 'tests/http2-test.c')
-rw-r--r-- | tests/http2-test.c | 4 |
1 files 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); |