Skip to content

Commit a6c73c8

Browse files
cosmo0920edsiper
authored andcommitted
out_influxdb: test: Follow the change of parameter name
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 41cdf32 commit a6c73c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/runtime/out_influxdb.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ void flb_test_integer_value()
289289
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
290290
flb_output_set(ctx, out_ffd,
291291
"match", "test",
292-
"use_integer", "true",
292+
"add_integer_suffix", "true",
293293
NULL);
294294

295295
/* Enable test mode */
@@ -340,7 +340,7 @@ void flb_test_negative_integer_value()
340340
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
341341
flb_output_set(ctx, out_ffd,
342342
"match", "test",
343-
"use_integer", "true",
343+
"add_integer_suffix", "true",
344344
NULL);
345345

346346
/* Enable test mode */
@@ -392,7 +392,7 @@ void flb_test_integer_as_float_value()
392392
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
393393
flb_output_set(ctx, out_ffd,
394394
"match", "test",
395-
"use_integer", "false",
395+
"add_integer_suffix", "false",
396396
NULL);
397397

398398
/* Enable test mode */
@@ -443,7 +443,7 @@ void flb_test_negative_integer_as_float_value()
443443
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
444444
flb_output_set(ctx, out_ffd,
445445
"match", "test",
446-
"use_integer", "false",
446+
"add_integer_suffix", "false",
447447
NULL);
448448

449449
/* Enable test mode */

0 commit comments

Comments
 (0)