Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
InversionSpaces committed Sep 27, 2023
1 parent 50f4f77 commit f3ad7cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/src/examples/ifPropagateErrors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
export async function ifPropagateErrorsCall() {
registerTestService({
call: (s) => {
if (s == "fail") return Promise.reject("fail");
if (s.startsWith("fail")) return Promise.reject("fail");
else return Promise.resolve(s);
},
});
Expand Down

0 comments on commit f3ad7cf

Please sign in to comment.