diff --git a/nym-wallet/src/utils/delegationIdentity.test.ts b/nym-wallet/src/utils/delegationIdentity.test.ts index 9a83b52791..771a91cc56 100644 --- a/nym-wallet/src/utils/delegationIdentity.test.ts +++ b/nym-wallet/src/utils/delegationIdentity.test.ts @@ -50,8 +50,6 @@ describe('delegationIdentity', () => { it('formats pending delegate explorer link label by mix id when identity lookup missed', () => { expect(formatPendingDelegationLinkLabel('', 788)).toBe('Mix 788'); expect(formatPendingDelegationLinkLabel('unbonded:788', 788)).toBe('Mix 788'); - expect(formatPendingDelegationLinkLabel('2Abcdefghijklmnopqrstuvwxyz1234567890', 788)).toBe( - '2Abcde...567890', - ); + expect(formatPendingDelegationLinkLabel('2Abcdefghijklmnopqrstuvwxyz1234567890', 788)).toBe('2Abcde...567890'); }); });