diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-04-27 11:44:42 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-04-27 11:44:42 -0700 |
| commit | 9ebf1b2d2cc4bb850cc152168c08a1bb9e3e8ddb (patch) | |
| tree | 33a003210caa2686bdd940539f7d280830a1ebdd /src | |
| parent | 6f1e1d0bfa5a6e897c2eab64623e17bddc693d10 (diff) | |
| download | nng-9ebf1b2d2cc4bb850cc152168c08a1bb9e3e8ddb.tar.gz nng-9ebf1b2d2cc4bb850cc152168c08a1bb9e3e8ddb.tar.bz2 nng-9ebf1b2d2cc4bb850cc152168c08a1bb9e3e8ddb.zip | |
Tests: remove the legacy wss transport test and framework support for Convey transport tests
This has been needed for some time; the convey framework is not reliable or debuggable,
and will ultimately be removed. Only the http client test remains using it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/list_test.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/core/list_test.c b/src/core/list_test.c index e121e4c5..ec56cd93 100644 --- a/src/core/list_test.c +++ b/src/core/list_test.c @@ -8,7 +8,6 @@ // #include "nng_impl.h" -#include "stubs.h" #include <nuts.h> typedef struct { @@ -116,8 +115,8 @@ test_list_two_items(void) } NUTS_TESTS = { - { "list empty", test_list_init_empty }, - { "list add one", test_list_add_item }, - { "list add two", test_list_two_items }, - { NULL, NULL }, -};
\ No newline at end of file + { "list empty", test_list_init_empty }, + { "list add one", test_list_add_item }, + { "list add two", test_list_two_items }, + { NULL, NULL }, +}; |
