From 39780e4cbf7f2730a17593ff278acd2fedfe7c8f Mon Sep 17 00:00:00 2001 From: yudrywet <166895665+yudrywet@users.noreply.github.com> Date: Mon, 15 Apr 2024 07:29:54 +0800 Subject: [PATCH] chore: remove repetitive words (#999) --- tests/integration/node.test.js | 2 +- tests/integration/sandbox.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/node.test.js b/tests/integration/node.test.js index da506ccd5..b9d2befba 100644 --- a/tests/integration/node.test.js +++ b/tests/integration/node.test.js @@ -1,7 +1,7 @@ // eslint-disable-next-line import/no-unresolved import format from '../../dist/test.cjs'; -test('Should run a a test app in a node environment', async () => { +test('Should run a test app in a node environment', async () => { const data = 'contract CheckPackage {}'; expect(await format(data)).toEqual('contract CheckPackage {}\n'); diff --git a/tests/integration/sandbox.test.js b/tests/integration/sandbox.test.js index ae14097ca..40b66ac83 100644 --- a/tests/integration/sandbox.test.js +++ b/tests/integration/sandbox.test.js @@ -1,4 +1,4 @@ -test('Should run a a test app in a sandbox', async () => { +test('Should run a test app in a sandbox', async () => { const data = 'contract CheckPackage {}'; const entry = new URL('./sandbox-test-app.cjs', import.meta.url);