TCP/TLS connection pooling for Eio
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add noop test cases to empty test suites

Alcotest requires at least one test case per suite. Replace empty lists
with a single noop test case to satisfy this constraint.

+1 -1
+1 -1
test/test_connection.ml
··· 6 6 (* Connection is an internal module that requires live Eio flows to test. 7 7 Integration tests are covered by the stress test. *) 8 8 9 - let suite = ("connection", []) 9 + let suite = ("connection", [ Alcotest.test_case "noop" `Quick ignore ])