From e97ed9ae456058e36dbee23c34e8a72ce2cb6187 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 5 Mar 2021 17:03:12 +0100 Subject: [PATCH] fix session test, just barely --- src/matrix/Session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index f88d1b38..1fbcaa60 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -517,7 +517,7 @@ export function tests() { } } }; - const newSessionData = await session.writeSync({next_batch: "b"}, 6, syncTxn); + const newSessionData = await session.writeSync({next_batch: "b"}, 6, null, syncTxn, {}); assert(syncSet); assert.equal(session.syncToken, "a"); assert.equal(session.syncFilterId, 5);