summaryrefslogtreecommitdiff
path: root/tests/testreadonlylist.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testreadonlylist.vala')
-rw-r--r--tests/testreadonlylist.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testreadonlylist.vala b/tests/testreadonlylist.vala
index 9db5e40..1f0ad92 100644
--- a/tests/testreadonlylist.vala
+++ b/tests/testreadonlylist.vala
@@ -49,7 +49,7 @@ public class ReadOnlyListTests : ReadOnlyCollectionTests {
}
protected override Collection<string> get_ro_view (Collection<string> collection) {
- return ((Gee.List) collection).read_only_view;
+ return ((Gee.List<string>) collection).read_only_view;
}
public new void test_immutable_iterator () {