aboutsummaryrefslogtreecommitdiff
path: root/tests/reqrep.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reqrep.c')
-rw-r--r--tests/reqrep.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/reqrep.c b/tests/reqrep.c
index b5a32dcf..526891ca 100644
--- a/tests/reqrep.c
+++ b/tests/reqrep.c
@@ -8,14 +8,15 @@
// found online at https://opensource.org/licenses/MIT.
//
+#include <string.h>
+
+#include <nng/nng.h>
+#include <nng/protocol/reqrep0/rep.h>
+#include <nng/protocol/reqrep0/req.h>
+#include <nng/supplemental/util/platform.h>
+
#include "convey.h"
-#include "nng.h"
-#include "protocol/reqrep0/rep.h"
-#include "protocol/reqrep0/req.h"
#include "stubs.h"
-#include "supplemental/util/platform.h"
-
-#include <string.h>
TestMain("REQ/REP pattern", {
int rv;
@@ -43,7 +44,6 @@ TestMain("REQ/REP pattern", {
});
Convey("Resend time option id works", {
-
// Set timeout.
So(nng_setopt_ms(req, NNG_OPT_REQ_RESENDTIME, 10) ==
0);