aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test-command.c
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-07-25 19:06:10 +0000
committerGravatar Brendan Taylor <whateley@gmail.com>2011-09-17 17:03:53 +0000
commit65ace942fdabfd6116163a21eec7cd7bbd3cbcb1 (patch)
tree40b1bce4290125bfa3d3695b85fd213f2bb15f77 /tests/test-command.c
parent1cbac1d7fb292adc0e3e07d206370aeb5ac8e7e0 (diff)
introduce getter and setter functions.
some variables didn't always have a value reflecting the browser's internal state. for example, if `default_encoding` was never set then `print @default_encoding` would always print a blank string. this introduces getter functions that ensure the value of a variable is always in sync with the internal state of the browser. also: setters, because sometimes you need to process user input before storing it.
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