diff --git a/test/anonymous_service_test.dart b/test/anonymous_service_test.dart index 3860f783..8aa8321b 100644 --- a/test/anonymous_service_test.dart +++ b/test/anonymous_service_test.dart @@ -10,7 +10,7 @@ main() { modify: (id, data, [p]) async => 'modify', update: (id, data, [p]) async => 'update', remove: (id, [p]) async => 'remove'); - expect(await svc.index(), 'index'); + expect(await svc.index(), ['index']); expect(await svc.read(null), 'read'); expect(await svc.create(null), 'create'); expect(await svc.modify(null, null), 'modify');