@@ -206,7 +206,7 @@ describe('NFT Items', () => {
206
206
} ) ;
207
207
expect ( screen . queryByText ( 'New! NFT detection' ) ) . toBeInTheDocument ( ) ;
208
208
} ) ;
209
- it ( 'should not render the NFTs Detection Notice when currently selected network is Mainnet and currently selected account has nfts ' , ( ) => {
209
+ it ( 'should not render the NFTs Detection Notice when currently selected network is Mainnet and currently selected account has NFTs ' , ( ) => {
210
210
render ( {
211
211
selectedAddress : ACCOUNT_1 ,
212
212
nfts : NFTS ,
@@ -242,7 +242,7 @@ describe('NFT Items', () => {
242
242
} ) ;
243
243
244
244
describe ( 'Collections' , ( ) => {
245
- it ( 'should render the name of the collections and number of NFTs in each collection if current account/chainId combination has nfts ' , ( ) => {
245
+ it ( 'should render the name of the collections and number of NFTs in each collection if current account/chainId combination has NFTs ' , ( ) => {
246
246
render ( {
247
247
selectedAddress : ACCOUNT_1 ,
248
248
nfts : NFTS ,
@@ -251,7 +251,7 @@ describe('NFT Items', () => {
251
251
expect ( screen . queryByText ( 'PUNKS (5)' ) ) . toBeInTheDocument ( ) ;
252
252
expect ( screen . queryByText ( 'Munks (3)' ) ) . toBeInTheDocument ( ) ;
253
253
} ) ;
254
- it ( 'should not render collections if current account/chainId combination has nfts ' , ( ) => {
254
+ it ( 'should not render collections if current account/chainId combination has NFTs ' , ( ) => {
255
255
render ( {
256
256
selectedAddress : ACCOUNT_2 ,
257
257
nfts : NFTS ,
0 commit comments