Skip to content

Commit

Permalink
e2e: update wallet addresses
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Mucha <jakub.mucha@icloud.com>
  • Loading branch information
drptbl committed Oct 29, 2022
1 parent a84d455 commit 2a02d33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/specs/metamask-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Metamask', () => {
cy.get('#network').contains('5');
cy.get('#chainId').contains('0x5');
cy.get('#accounts').contains(
'0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
'0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
);
});
it(`getNetwork should return network by default`, () => {
Expand Down Expand Up @@ -113,7 +113,7 @@ describe('Metamask', () => {
it(`getMetamaskWalletAddress should return wallet address of current metamask account`, () => {
cy.getMetamaskWalletAddress().then(address => {
expect(address).to.be.equal(
'0xa0ee7a142d267c1f36714e4a8f75612f20a79720',
'0x70997970C51812dc3A010C7d01b50e0d17dc79C8',
);
});
});
Expand All @@ -125,7 +125,7 @@ describe('Metamask', () => {
it(`getMetamaskWalletAddress should return valid wallet address of metamask account after changing an account`, () => {
cy.getMetamaskWalletAddress().then(address => {
expect(address).to.be.equal(
'0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
'0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
);
});
});
Expand Down Expand Up @@ -163,7 +163,7 @@ describe('Metamask', () => {
});
cy.get('#personalSignVerify').click();
cy.get('#personalSignVerifySigUtilResult').contains(
'0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
'0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
);
});
it(`confirmMetamaskSignatureRequest should confirm data signature request`, () => {
Expand Down

0 comments on commit 2a02d33

Please sign in to comment.