Skip to content

Commit

Permalink
linearizer test fixture needs reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
chm-diederichs committed Feb 19, 2024
1 parent ce3b591 commit 21d0ea2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/linearizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,9 @@ test('linearizer - reordering after restart', async t => {
await replicateAndSync(bases)
await replicateAndSync(bases)

t.is(await b.view.get(0), 'c0')
t.is(await b.view.get(1), 'a0')
t.is(await b.view.get(2), 'b0')
t.is(await b.view.get(0), 'b0')
t.is(await b.view.get(1), 'c0')
t.is(await b.view.get(2), 'a0')
})

test('linearizer - shouldAck', async t => {
Expand Down

0 comments on commit 21d0ea2

Please sign in to comment.