Skip to content

Commit

Permalink
tests: fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens committed Dec 5, 2024
1 parent 51433a6 commit 277eb52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runtime/custom_calyptia_input_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ static void test_calyptia_machine_id_generation() {
TEST_CHECK(t_ctx != NULL);

/* Set config directory to default */
t_ctx = update_config_dir(FLEET_DEFAULT_CONFIG_DIR)
t_ctx = update_config_dir(t_ctx, FLEET_DEFAULT_CONFIG_DIR);
TEST_CHECK(t_ctx != NULL);

/* Test setting properties */
Expand Down Expand Up @@ -236,7 +236,7 @@ static void test_calyptia_machine_id_generation() {
TEST_CHECK(value && strcmp(value, machine_id) == 0);

/* repeat with new config directory */
t_ctx = update_config_dir("/test/config/fleet")
t_ctx = update_config_dir(t_ctx, "/test/config/fleet");
TEST_CHECK(t_ctx != NULL);

/* check we use the new directory for the filename */
Expand Down

0 comments on commit 277eb52

Please sign in to comment.