Skip to content

Commit

Permalink
test: Fix inversion of expected/got in log test
Browse files Browse the repository at this point in the history
  • Loading branch information
wismill committed Feb 14, 2025
1 parent c9b0c52 commit 548fc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ test_keymaps(void)
xkb_keymap_unref(keymap);
assert_printf(streq_not_null(darray_items(log_string), keymaps[k].log),
"Expected:\n%s\nGot:\n%s\n",
darray_items(log_string), keymaps[k].log);
keymaps[k].log, darray_items(log_string));
darray_free(log_string);
}

Expand Down

0 comments on commit 548fc35

Please sign in to comment.