aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ben Boeckel <MathStuf@gmail.com>2011-11-22 23:45:34 -0500
committerGravatar Ben Boeckel <MathStuf@gmail.com>2011-11-22 23:45:34 -0500
commitf03f614c2a861beb08a16244672434c90a9ad9ad (patch)
treec4d4494ff8e7fb1ec681ec0d47e15836bec57429
parente2f3fe51149c8924b83899db87425ea1a462dc4b (diff)
Update statusbar toggle test
-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 db08097..b6a1063 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());
}