Skip to content

Commit

Permalink
Integration test fix: error codes were changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Sep 12, 2023
1 parent e5049f1 commit 71cbac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/marinade-finance-instructions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ describe('Marinade Finance', () => {
await TestWorld.PROVIDER.sendAndConfirm(transaction)
fail('should not be able to claim')
} catch (e) {
if (!(e as Error).message.includes('custom program error: 0x1103')) {
if (!(e as Error).message.includes('custom program error: 0x1784')) {
console.log('Claim ticket failed with unexpected error', e)
throw e
}
Expand Down

0 comments on commit 71cbac7

Please sign in to comment.