aboutsummaryrefslogtreecommitdiff
path: root/tests/bus.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bus.c')
-rw-r--r--tests/bus.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/bus.c b/tests/bus.c
index 88137b81..96e7ede3 100644
--- a/tests/bus.c
+++ b/tests/bus.c
@@ -1,6 +1,6 @@
//
-// Copyright 2017 Garrett D'Amore <garrett@damore.org>
-// Copyright 2017 Capitar IT Group BV <info@capitar.com>
+// Copyright 2018 Garrett D'Amore <garrett@damore.org>
+// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
@@ -8,15 +8,14 @@
// found online at https://opensource.org/licenses/MIT.
//
-#include "convey.h"
-#include "nng.h"
+#include <string.h>
-#include "protocol/bus0/bus.h"
+#include <nng/nng.h>
+#include <nng/protocol/bus0/bus.h>
+#include "convey.h"
#include "stubs.h"
-#include <string.h>
-
#define APPENDSTR(m, s) nng_msg_append(m, s, strlen(s))
#define CHECKSTR(m, s) \
So(nng_msg_len(m) == strlen(s)); \