aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test-command.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-command.c')
-rw-r--r--tests/test-command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-command.c b/tests/test-command.c
index 9b01928..b3c3d0c 100644
--- a/tests/test-command.c
+++ b/tests/test-command.c
@@ -253,11 +253,11 @@ test_toggle_status (void) {
g_assert(!get_show_status());
/* status bar can be toggled on */
- parse_cmd_line("toggle_status", NULL);
+ parse_cmd_line("toggle show_status", NULL);
g_assert(get_show_status());
/* status bar can be toggled back off */
- parse_cmd_line("toggle_status", NULL);
+ parse_cmd_line("toggle show_status", NULL);
g_assert(!get_show_status());
}