Skip to content

Commit

Permalink
out_influxdb: test: Follow the change of parameter name
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 authored and edsiper committed Sep 6, 2024
1 parent 41cdf32 commit a6c73c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/runtime/out_influxdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ void flb_test_integer_value()
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
flb_output_set(ctx, out_ffd,
"match", "test",
"use_integer", "true",
"add_integer_suffix", "true",
NULL);

/* Enable test mode */
Expand Down Expand Up @@ -340,7 +340,7 @@ void flb_test_negative_integer_value()
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
flb_output_set(ctx, out_ffd,
"match", "test",
"use_integer", "true",
"add_integer_suffix", "true",
NULL);

/* Enable test mode */
Expand Down Expand Up @@ -392,7 +392,7 @@ void flb_test_integer_as_float_value()
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
flb_output_set(ctx, out_ffd,
"match", "test",
"use_integer", "false",
"add_integer_suffix", "false",
NULL);

/* Enable test mode */
Expand Down Expand Up @@ -443,7 +443,7 @@ void flb_test_negative_integer_as_float_value()
out_ffd = flb_output(ctx, (char *) "influxdb", NULL);
flb_output_set(ctx, out_ffd,
"match", "test",
"use_integer", "false",
"add_integer_suffix", "false",
NULL);

/* Enable test mode */
Expand Down

0 comments on commit a6c73c8

Please sign in to comment.