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 631f8c4..07f053c 100644
--- a/tests/test-command.c
+++ b/tests/test-command.c
@@ -188,13 +188,13 @@ test_set_variable (struct EventFixture *ef, const void *data) {
parse_cmd_line("set nonexistant_variable = Some Value", NULL);
ASSERT_EVENT(ef, "VARIABLE_SET nonexistant_variable str 'Some Value'");
uzbl_cmdprop *c = g_hash_table_lookup(uzbl.behave.proto_var, "nonexistant_variable");
- g_assert_cmpstr("Some Value", ==, *c->ptr.s);
+ g_assert_cmpstr("Some Value", ==, *(c->ptr.s));
/* set a custom variable with expansion */
parse_cmd_line("set an_expanded_variable = Test @(echo expansion)@", NULL);
ASSERT_EVENT(ef, "VARIABLE_SET an_expanded_variable str 'Test expansion'");
c = g_hash_table_lookup(uzbl.behave.proto_var, "an_expanded_variable");
- g_assert_cmpstr("Test expansion", ==, *c->ptr.s);
+ g_assert_cmpstr("Test expansion", ==, *(c->ptr.s));
}
void