diff --git a/memory-v2-runtime.test.mjs b/memory-v2-runtime.test.mjs index 4460dc3..7205a1a 100644 --- a/memory-v2-runtime.test.mjs +++ b/memory-v2-runtime.test.mjs @@ -391,7 +391,7 @@ test('createMemoryV2Runtime selects pgvector only when pool and embedding are co assert.equal(semanticQuery.options.connectionString, 'postgresql://local/memory'); assert.equal(semanticQuery.options.max, 2); assert.match(semanticQuery.sql, /recent_candidates/); - assert.deepEqual(semanticQuery.params, ['u1', '[0.1,0.2,0.3]', 50]); + assert.deepEqual(semanticQuery.params, ['u1', '[0.1,0.2,0.3]', 50, 0.15, 200]); await memory.close(); assert.equal(poolEnded, true);