aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/rspamd_rcl_test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/rspamd_rcl_test.c b/test/rspamd_rcl_test.c
index 20dcc8c24..01b3ba835 100644
--- a/test/rspamd_rcl_test.c
+++ b/test/rspamd_rcl_test.c
@@ -59,11 +59,10 @@ rspamd_rcl_test_func (void)
const gchar **cur;
GError *err = NULL;
- parser = rspamd_cl_parser_new ();
- g_assert (parser != NULL);
-
cur = rcl_test_valid;
while (*cur != NULL) {
+ parser = rspamd_cl_parser_new ();
+ g_assert (parser != NULL);
rspamd_cl_parser_add_chunk (parser, *cur, strlen (*cur), &err);
g_assert_no_error (err);
cur ++;