Fix DittoPgStore req test

This commit is contained in:
Alex Gleason 2025-03-15 17:03:20 -05:00
parent 006a96d0eb
commit 36ffd4283a
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -16,7 +16,7 @@ Deno.test('req streaming', async () => {
const controller = new AbortController();
const promise = (async () => {
for await (const msg of relay.req([{ since: 0 }], { signal: controller.signal })) {
for await (const msg of relay.req([{ limit: 0 }], { signal: controller.signal })) {
msgs.push(msg);
}
})();