@@ -10,9 +10,8 @@ import {
1010 FeeQuoterStorage ,
1111 TimestampedPrice ,
1212} from '../../wrappers/ccip/FeeQuoter'
13- import { testLog , getExternals , expectSuccessfulTransaction } from '../Logs'
1413import '@ton/test-utils'
15- import { uint8ArrayToBigInt , ZERO_ADDRESS } from '../../utils/Utils '
14+ import { uint8ArrayToBigInt , ZERO_ADDRESS } from '../../utils'
1615import { KeyPair } from '@ton/crypto'
1716import { expectEqualsConfig , generateEd25519KeyPair } from '../libraries/ocr/Helpers'
1817import {
@@ -141,7 +140,11 @@ describe('OffRamp', () => {
141140 deployer . getSender ( ) ,
142141 createDefaultConfig ( ) ,
143142 )
144- expectSuccessfulTransaction ( resultSetCommit , deployer . address , offRamp . address )
143+ expect ( resultSetCommit . transactions ) . toHaveTransaction ( {
144+ from : deployer . address ,
145+ to : offRamp . address ,
146+ success : true ,
147+ } )
145148
146149 Logs . assertLog (
147150 resultSetCommit . transactions ,
@@ -160,7 +163,11 @@ describe('OffRamp', () => {
160163 deployer . getSender ( ) ,
161164 createDefaultConfig ( { ocrPluginType : OCR3_PLUGIN_TYPE_EXECUTE } ) ,
162165 )
163- expectSuccessfulTransaction ( resultSetExecute , deployer . address , offRamp . address )
166+ expect ( resultSetExecute . transactions ) . toHaveTransaction ( {
167+ from : deployer . address ,
168+ to : offRamp . address ,
169+ success : true ,
170+ } )
164171 Logs . assertLog (
165172 resultSetCommit . transactions ,
166173 offRamp . address ,
0 commit comments