From 6061e1de2a680b14b1a6e1eb2642d0a643910a73 Mon Sep 17 00:00:00 2001 From: William Hua Date: Thu, 4 Jul 2013 00:12:14 -0400 Subject: Disable experimental non-null for tests. --- tests/Makefile.am | 3 +-- tests/main.vala | 12 ++++++------ 2 files changed, 7 insertions(+), 8 deletions(-) (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am index b4e80c02..9161365e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -4,8 +4,7 @@ check_PROGRAMS = indicator-keyboard-test AM_CFLAGS = -w AM_LDFLAGS = -lm -AM_VALAFLAGS = --enable-experimental-non-null \ - --metadatadir $(top_srcdir)/deps \ +AM_VALAFLAGS = --metadatadir $(top_srcdir)/deps \ --vapidir $(top_srcdir)/deps indicator_keyboard_test_SOURCES = main.vala \ diff --git a/tests/main.vala b/tests/main.vala index 1a23b46f..4e121fcd 100644 --- a/tests/main.vala +++ b/tests/main.vala @@ -146,7 +146,7 @@ static void test_activate_input_source (void *data) { action_group.disconnect (signal_name); var state = action_group.get_action_state ("current"); - var current = ((!) state).get_uint32 (); + var current = state.get_uint32 (); assert (current == 2); try { @@ -410,7 +410,7 @@ static void test_update_visible (void *data) { action_group.disconnect (signal_name); var state = action_group.get_action_state ("indicator"); - assert (((!) state).lookup ("visible", "b", out visible)); + assert (state.lookup ("visible", "b", out visible)); assert (visible); loop = new MainLoop (null, false); @@ -433,7 +433,7 @@ static void test_update_visible (void *data) { action_group.disconnect (signal_name); state = action_group.get_action_state ("indicator"); - assert (((!) state).lookup ("visible", "b", out visible)); + assert (state.lookup ("visible", "b", out visible)); assert (!visible); loop = new MainLoop (null, false); @@ -456,7 +456,7 @@ static void test_update_visible (void *data) { action_group.disconnect (signal_name); state = action_group.get_action_state ("indicator"); - assert (((!) state).lookup ("visible", "b", out visible)); + assert (state.lookup ("visible", "b", out visible)); assert (visible); } @@ -505,7 +505,7 @@ static void test_update_input_source (void *data) { action_group.disconnect (signal_name); var state = action_group.get_action_state ("current"); - var current = ((!) state).get_uint32 (); + var current = state.get_uint32 (); assert (current == 1); try { @@ -538,7 +538,7 @@ static void test_update_input_source (void *data) { action_group.disconnect (signal_name); state = action_group.get_action_state ("current"); - current = ((!) state).get_uint32 (); + current = state.get_uint32 (); assert (current == 0); try { -- cgit v1.2.3