Skip to content

Commit fcf8deb

Browse files
committed
fix(core): Improve clarity of verification failed message
1 parent ab40753 commit fcf8deb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/case-plugin-base/src/errors/CaseFailedAssertionError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class CaseFailedAssertionError extends Error {
1313

1414
constructor(matchResult: MatchResult) {
1515
super(
16-
`ContractCase example failed to match the expectations: \n\n${matchResult
16+
`Contract test interaction didn't match the expectation: \n\n${matchResult
1717
.map((r) => ` - ${r.message}`)
1818
.reduce((acc, curr) => `${acc}\n${curr}`)}`,
1919
);

0 commit comments

Comments
 (0)