diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-12 15:28:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-12 15:28:25 +0000 |
commit | 3a145180bc1398ab06f25fee22baa9cd8757caa3 (patch) | |
tree | 4798fd523d94e80a713d5d3f6b266b5fd6199a63 | |
parent | 6deaf1129d3bb8ad8967698e31ac139a35c2e111 (diff) | |
parent | 82248098890e862af19ff8c5d9def10f03921262 (diff) | |
download | rspamd-3a145180bc1398ab06f25fee22baa9cd8757caa3.tar.gz rspamd-3a145180bc1398ab06f25fee22baa9cd8757caa3.zip |
Merge pull request #1122 from fatalbanana/t
[Minor] Fix tests
-rw-r--r-- | src/plugins/fuzzy_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index 452374853..9286bda89 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -1960,7 +1960,7 @@ cleanup: reply = ucl_object_typed_new (UCL_OBJECT); - ucl_object_insert_key (reply, ucl_object_fromstring ("true"), + ucl_object_insert_key (reply, ucl_object_frombool (true), "success", 0, false); hashes = ucl_object_typed_new (UCL_ARRAY); |