summaryrefslogtreecommitdiff
path: root/tests/testmultimap.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2019-03-14 15:05:21 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2019-03-14 15:05:21 +0100
commite1d352935bec5f356669603ef5803d5ba7c8cd2e (patch)
tree92afca6784ec80e85aa79050f14a72007135bc2a /tests/testmultimap.vala
parent3b931369f1cfc190d39fbba4f4e5d235f401b3d5 (diff)
downloadlibgee-e1d352935bec5f356669603ef5803d5ba7c8cd2e.tar.gz
Constructors of abstract classes should not be public
Diffstat (limited to 'tests/testmultimap.vala')
-rw-r--r--tests/testmultimap.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testmultimap.vala b/tests/testmultimap.vala
index 0531be6..c8bd4da 100644
--- a/tests/testmultimap.vala
+++ b/tests/testmultimap.vala
@@ -28,7 +28,7 @@ using Gee;
public abstract class MultiMapTests : Gee.TestCase {
- public MultiMapTests (string name) {
+ protected MultiMapTests (string name) {
base (name);
add_test ("[MultiMap] type correctness", test_type_correctness);
add_test ("[MultiMap] size", test_size);