diff options
author | Thomas Haller <thaller@redhat.com> | 2016-10-11 14:08:36 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-10-11 14:08:36 +0200 |
commit | 814b1aec533bf008bbca85a4b6a24a9e93c16bff (patch) | |
tree | b751ab8cc69fa683dd8481fc1c7e02e0478f387c /libnm-core | |
parent | 6b904a51ee3e6dcb8926d963d901e6689d4f9fad (diff) | |
download | NetworkManager-814b1aec533bf008bbca85a4b6a24a9e93c16bff.tar.gz |
libnm/tests: fix bug in test
Fixes: 6b904a51ee3e6dcb8926d963d901e6689d4f9fad
Diffstat (limited to 'libnm-core')
-rw-r--r-- | libnm-core/tests/test-general.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-core/tests/test-general.c b/libnm-core/tests/test-general.c index 3bb2e1bb09..a0579a7027 100644 --- a/libnm-core/tests/test-general.c +++ b/libnm-core/tests/test-general.c @@ -5430,7 +5430,7 @@ test_nm_set_out (void) /* test that we successfully re-defined _G_BOOLEAN_EXPR() */ #define _T1(a) \ ({ \ - g_assert (a > 5); \ + g_assert (a > 2); \ a; \ }) g_assert (_T1 (3) > 1); |