Skip to content

Commit

Permalink
Respond to upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Jan 16, 2024
1 parent f363ccd commit 33a9524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/update/deduplication/feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const feature = new Feature({
workflow,
checkResult: async (_, handle) => {
const updateId = 'myUpdateId';
await handle.executeUpdate(increment, { id: updateId });
await handle.executeUpdate(increment, { updateId });
assert.equal(await handle.query(getCount), 1);
await handle.executeUpdate(increment, { id: updateId });
await handle.executeUpdate(increment, { updateId });
assert.equal(await handle.query(getCount), 1);
await handle.executeUpdate(exit, {});
const count = await handle.result();
Expand Down

0 comments on commit 33a9524

Please sign in to comment.