Skip to content

Commit 854db65

Browse files
committed
test(property-provider): fix error type
1 parent 6cc7688 commit 854db65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/property-provider/src/chain.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ describe("chain", () => {
113113
await chain()();
114114
throw new Error("Should not get here");
115115
} catch (error) {
116-
expect(error).toEqual(new Error("No providers in chain"));
116+
expect(error).toEqual(new ProviderError("No providers in chain"));
117117
}
118118
});
119119
});

0 commit comments

Comments
 (0)