Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Jan 8, 2025
1 parent 86391ad commit 1a06293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/v2/warp10/testClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ describe('Test Warp Client', () => {
const ev = generateFakeEvents(startTime, endTime, 100);
const count = await warp10.ingest({ className }, ev);
let fetchResp = await warp10.fetch({ className, start: endTime, stop: startTime });
assert.strictEqual(fetchResp.result[0].length, 1);
assert.strictEqual(fetchResp.result.length, 1);
assert.strictEqual(fetchResp.result[0].v.length, count);
await warp10.delete({ className, start: startTime, end: endTime });
fetchResp = await warp10.fetch({ className, start: endTime, stop: startTime });
assert.strictEqual(fetchResp.result[0].length, 0);
assert.strictEqual(fetchResp.result.length, 0);
});
});

0 comments on commit 1a06293

Please sign in to comment.