Skip to content

Commit d108da9

Browse files
committed
Update e2e test
Signed-off-by: Shubham Sharma <[email protected]>
1 parent 0d9ba41 commit d108da9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/http/actors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ describe('http/actors', () => {
268268
// The method receiveReminder on AbstractActor should be called at least once
269269
// this will state the not implemented function
270270
expect(spy.mock.calls[0].length).toBe(1);
271-
expect(spy.mock.calls[0][0]).toEqual(`{"error":"ACTOR_METHOD_NOT_IMPLEMENTED","errorMsg":"A reminder was created for the actor with id: ${actorId.getId()} but the method 'receiveReminder' was not implemented"}`);
271+
expect(spy.mock.calls[0][0]).toContain(`{"error":"ACTOR_METHOD_NOT_IMPLEMENTED","errorMsg":"A reminder was created for the actor with id: ${actorId.getId()} but the method 'receiveReminder' was not implemented"}`);
272272

273273
// Unregister the reminder
274274
await actor.removeReminder();

0 commit comments

Comments
 (0)