Skip to content

Commit

Permalink
fixup! restored some mistaken moves
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Jul 12, 2024
1 parent 192d2ce commit 0b0827c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eventual-send/test/e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ test('E call missing method', async t => {
});

test('E sendOnly call missing method', async t => {
await null;
let count = 279;
const counter = {
incr(n) {
Expand All @@ -117,6 +116,7 @@ test('E sendOnly call missing method', async t => {

const result = E.sendOnly(counter).decr(210);
t.is(result, undefined, 'return is undefined as expected');
await null;
t.is(count, 279, `sendOnly method call doesn't change count`);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/far/test/e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ test('E call missing class methods', async t => {
});

test('E sendOnly call missing method', async t => {
await null;
let count = 279;
const counter = {
incr(n) {
Expand All @@ -139,6 +138,7 @@ test('E sendOnly call missing method', async t => {

const result = E.sendOnly(counter).decr(210);
t.is(result, undefined, 'return is undefined as expected');
await null;
t.is(count, 279, `sendOnly method call doesn't change count`);
});

Expand Down

0 comments on commit 0b0827c

Please sign in to comment.