diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-04-30 21:41:40 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-05-01 12:27:19 -0700 |
| commit | 4998964a435fe0f02a2d81b01fdb837214674e72 (patch) | |
| tree | dc5fe29da0574fc1510ab6f9b23b54ffd68cd97b /tests/reconnect.c | |
| parent | 63bdb2c28bc185096e579d1922d57cb71ecaa36b (diff) | |
| download | nng-4998964a435fe0f02a2d81b01fdb837214674e72.tar.gz nng-4998964a435fe0f02a2d81b01fdb837214674e72.tar.bz2 nng-4998964a435fe0f02a2d81b01fdb837214674e72.zip | |
fixes #381 Want comparators for various types
Diffstat (limited to 'tests/reconnect.c')
| -rw-r--r-- | tests/reconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/reconnect.c b/tests/reconnect.c index 4cd6cb3a..6b4e8586 100644 --- a/tests/reconnect.c +++ b/tests/reconnect.c @@ -96,7 +96,7 @@ TestMain("Reconnect works", { CHECKSTR(msg, "again"); p2 = nng_msg_get_pipe(msg); nng_msg_free(msg); - So(p2.id != p1.id); + So(nng_pipe_id(p2) != nng_pipe_id(p1)); }); }); }); |
