diff --git a/yarn-project/end-to-end/src/e2e_account_contracts.test.ts b/yarn-project/end-to-end/src/e2e_account_contracts.test.ts index 14024c41a57..02a2b78557c 100644 --- a/yarn-project/end-to-end/src/e2e_account_contracts.test.ts +++ b/yarn-project/end-to-end/src/e2e_account_contracts.test.ts @@ -74,6 +74,10 @@ describe('e2e_account_contracts', () => { itShouldBehaveLikeAnAccountContract((encryptionKey: PrivateKey) => new SingleKeyAccountContract(encryptionKey)); }); + describe('eip single-key account', () => { + itShouldBehaveLikeAnAccountContract((encryptionKey: PrivateKey) => new Eip1271AccountContract(encryptionKey)); + }); + describe('schnorr multi-key account', () => { itShouldBehaveLikeAnAccountContract(() => new SchnorrAccountContract(PrivateKey.random())); }); @@ -81,7 +85,4 @@ describe('e2e_account_contracts', () => { describe('ecdsa stored-key account', () => { itShouldBehaveLikeAnAccountContract(() => new EcdsaAccountContract(PrivateKey.random())); }); - describe('ecdsa stored-key account', () => { - itShouldBehaveLikeAnAccountContract(() => new Eip1271AccountContract(PrivateKey.random())); - }); });