Skip to content

Commit 1a36bb2

Browse files
authored
chore: fix PPE charge limit e2e test (#468)
Closes #458
1 parent e798e0c commit 1a36bb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/sdk/actorCharge/test.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ test('charge limit', async () => {
5858
assert.deepEqual(run.chargedEventCounts, { foobar: 2 });
5959
});
6060

61-
test('default charge limit 0', async () => {
61+
test('default options start cost-unlimited runs', async () => {
6262
const run = await runActor({}, {});
6363

6464
assert.strictEqual(run.status, 'SUCCEEDED');
65-
assert.deepEqual(run.chargedEventCounts, { foobar: 0 });
65+
assert.deepEqual(run.chargedEventCounts, { foobar: 4 });
6666
});

0 commit comments

Comments
 (0)