Skip to content

Commit

Permalink
chore: fix e2e matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
karolsojko committed Jan 12, 2024
1 parent 766f156 commit d91402e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/snjs/mocha/sync_tests/online.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ describe('online syncing', function () {
}

expect(safeGuard.isSyncCallsThresholdReachedThisMinute()).to.equal(true)
expect(syncCount == 200).to.equal(true)
expect(syncCount).to.equal(200)
})

it('items that are never synced and deleted should not be uploaded to server', async function () {
Expand Down

0 comments on commit d91402e

Please sign in to comment.