Skip to content

Commit f535fcd

Browse files
committed
updated casinG
1 parent ef1c457 commit f535fcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/components/app/nfts-tab/nfts-tab.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ describe('NFT Items', () => {
206206
});
207207
expect(screen.queryByText('New! NFT detection')).toBeInTheDocument();
208208
});
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', () => {
210210
render({
211211
selectedAddress: ACCOUNT_1,
212212
nfts: NFTS,
@@ -242,7 +242,7 @@ describe('NFT Items', () => {
242242
});
243243

244244
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', () => {
246246
render({
247247
selectedAddress: ACCOUNT_1,
248248
nfts: NFTS,
@@ -251,7 +251,7 @@ describe('NFT Items', () => {
251251
expect(screen.queryByText('PUNKS (5)')).toBeInTheDocument();
252252
expect(screen.queryByText('Munks (3)')).toBeInTheDocument();
253253
});
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', () => {
255255
render({
256256
selectedAddress: ACCOUNT_2,
257257
nfts: NFTS,

0 commit comments

Comments
 (0)