diff options
| author | Michael Biebl <biebl@debian.org> | 2017-01-23 23:35:34 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-01-23 23:35:34 +0100 |
| commit | 892c1a56bfb94fa4c0409673ca5a762d1ba67a78 (patch) | |
| tree | 8b61046eaf26867082441804828160a44f5b33c0 /libnm-core | |
| parent | f759d9a648636660552008595fb7b100a3fc2b64 (diff) | |
| parent | d462f64d6044349b0a4e3581cf2c97bbab7aec97 (diff) | |
Merge tag 'upstream/1.5.91' into experimental
Upstream version 1.5.91
Diffstat (limited to 'libnm-core')
| -rw-r--r-- | libnm-core/tests/test-general.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libnm-core/tests/test-general.c b/libnm-core/tests/test-general.c index 1cb8d7af..b9fef8da 100644 --- a/libnm-core/tests/test-general.c +++ b/libnm-core/tests/test-general.c @@ -4708,7 +4708,9 @@ test_nm_utils_check_valid_json (void) #else /* Without JSON library everything except empty string is considered valid */ _json_config_check_valid ("{ }", TRUE); - _json_config_check_valid ("{'%!-a1", TRUE); + _json_config_check_valid ("{'%!-a1} ", TRUE); + _json_config_check_valid (" {'%!-a1}", TRUE); + _json_config_check_valid ("{'%!-a1", FALSE); #endif } |