@@ -150,7 +150,7 @@ async function sendTokens(
150150 const client = await CosmWasmClient . connect ( wasmd . endpoint ) ;
151151 const result = await client . getTx ( sendSuccessful . hash ) ;
152152 expect ( result ) . toEqual (
153- jasmine . objectContaining ( {
153+ expect . objectContaining ( {
154154 height : sendSuccessful . height ,
155155 txIndex : sendSuccessful . txIndex ,
156156 hash : sendSuccessful . hash ,
@@ -165,7 +165,7 @@ async function sendTokens(
165165 const client = await CosmWasmClient . connect ( wasmd . endpoint ) ;
166166 const result = await client . getTx ( sendUnsuccessful . hash ) ;
167167 expect ( result ) . toEqual (
168- jasmine . objectContaining ( {
168+ expect . objectContaining ( {
169169 height : sendUnsuccessful . height ,
170170 txIndex : sendUnsuccessful . txIndex ,
171171 hash : sendUnsuccessful . hash ,
@@ -190,7 +190,7 @@ async function sendTokens(
190190 const result = await client . searchTx ( `tx.height=${ sendSuccessful . height } ` ) ;
191191 expect ( result . length ) . toBeGreaterThanOrEqual ( 1 ) ;
192192 expect ( result ) . toContain (
193- jasmine . objectContaining ( {
193+ expect . objectContaining ( {
194194 height : sendSuccessful . height ,
195195 txIndex : sendSuccessful . txIndex ,
196196 hash : sendSuccessful . hash ,
@@ -206,7 +206,7 @@ async function sendTokens(
206206 const result = await client . searchTx ( `tx.height=${ sendUnsuccessful . height } ` ) ;
207207 expect ( result . length ) . toBeGreaterThanOrEqual ( 1 ) ;
208208 expect ( result ) . toContain (
209- jasmine . objectContaining ( {
209+ expect . objectContaining ( {
210210 height : sendUnsuccessful . height ,
211211 txIndex : sendUnsuccessful . txIndex ,
212212 hash : sendUnsuccessful . hash ,
@@ -236,7 +236,7 @@ async function sendTokens(
236236
237237 // Check details of most recent result
238238 expect ( results [ results . length - 1 ] ) . toEqual (
239- jasmine . objectContaining ( {
239+ expect . objectContaining ( {
240240 height : sendSuccessful . height ,
241241 txIndex : sendSuccessful . txIndex ,
242242 hash : sendSuccessful . hash ,
@@ -264,7 +264,7 @@ async function sendTokens(
264264
265265 // Check details of most recent result
266266 expect ( results [ results . length - 1 ] ) . toEqual (
267- jasmine . objectContaining ( {
267+ expect . objectContaining ( {
268268 height : sendSuccessful . height ,
269269 hash : sendSuccessful . hash ,
270270 tx : sendSuccessful . tx ,
@@ -289,7 +289,7 @@ async function sendTokens(
289289
290290 // Check details of most recent result
291291 expect ( results [ results . length - 1 ] ) . toEqual (
292- jasmine . objectContaining ( {
292+ expect . objectContaining ( {
293293 height : sendSuccessful . height ,
294294 hash : sendSuccessful . hash ,
295295 tx : sendSuccessful . tx ,
0 commit comments