summaryrefslogtreecommitdiff
path: root/tests/testreadonlyset.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testreadonlyset.vala')
-rw-r--r--tests/testreadonlyset.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testreadonlyset.vala b/tests/testreadonlyset.vala
index a573cda..3a853d7 100644
--- a/tests/testreadonlyset.vala
+++ b/tests/testreadonlyset.vala
@@ -41,6 +41,6 @@ public class ReadOnlySetTests : ReadOnlyCollectionTests {
}
protected override Collection<string> get_ro_view (Collection<string> collection) {
- return ((Gee.Set) collection).read_only_view;
+ return ((Gee.Set<string>) collection).read_only_view;
}
}