File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ describe('e2e', () => {
4141
4242 it ( 'should return registered networks' , ( ) => {
4343 expect ( networks ) . to . have . length . above ( 0 , 'No registered networks' )
44- expect ( networks [ 0 ] ) . to . have . all . keys ( networkInfoKeys )
44+ expect ( networks [ 0 ] ) . to . contains . keys ( networkInfoKeys )
4545 expect ( networks [ 0 ] . abbreviation ) . to . be . a ( 'string' )
4646 expect ( networks [ 0 ] . address )
4747 . to . be . a ( 'string' )
@@ -64,7 +64,7 @@ describe('e2e', () => {
6464 describe ( '#getInfo()' , ( ) => {
6565 it ( 'should return detailed information of specific currency network' , async ( ) => {
6666 const networkInfo = await currencyNetwork . getInfo ( networks [ 0 ] . address )
67- expect ( networkInfo ) . to . have . all . keys ( networkInfoKeys )
67+ expect ( networkInfo ) . to . contains . keys ( networkInfoKeys )
6868 expect ( networkInfo . abbreviation ) . to . be . a ( 'string' )
6969 expect ( networkInfo . address )
7070 . to . be . a ( 'string' )
You can’t perform that action at this time.
0 commit comments