summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMaciej Piechotka <uzytkownik2@gmail.com>2012-08-18 18:36:00 -0700
committerMaciej Piechotka <uzytkownik2@gmail.com>2012-08-18 18:52:38 -0700
commite300c2a1ebd59362aefffa70a640a377aeadefc8 (patch)
tree4b49edfec08e786f5714057358bb85c70f595e40 /tests
parent3e68cf8b769acc07082bb73ccd58e08e8a9d2c30 (diff)
downloadlibgee-e300c2a1ebd59362aefffa70a640a377aeadefc8.tar.gz
Move virtual methods to Map interface
Diffstat (limited to 'tests')
-rw-r--r--tests/testmap.vala5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/testmap.vala b/tests/testmap.vala
index 009f091..4507763 100644
--- a/tests/testmap.vala
+++ b/tests/testmap.vala
@@ -519,11 +519,6 @@ public abstract class MapTests : Gee.TestCase {
assert (test_map != null);
Value value;
- value = Value (typeof (bool));
- test_map.get_property ("is-empty", ref value);
- assert (value.get_boolean () == test_map.is_empty);
- value.unset ();
-
value = Value (typeof (int));
test_map.get_property ("size", ref value);
assert (value.get_int () == test_map.size);