From 137c8eb2909d89fd64c07a9ddcdde2512193b0cf Mon Sep 17 00:00:00 2001 From: Bauke Date: Sun, 3 Dec 2023 13:22:03 +0100 Subject: [PATCH] Remove unused assertion and variable declaration. --- tests/tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.ts b/tests/tests.ts index 98c02d4..556732d 100644 --- a/tests/tests.ts +++ b/tests/tests.ts @@ -33,10 +33,10 @@ const sampleObject: SampleObject = { status: "passed", }; -const group = await setup("Value", async (group) => { +await setup("Value", async (group) => { const samples = [ ["number", "testNumber", Math.PI], - ["string", "testString", "A string to test with!" as string], + ["string", "testString", "A string to test with!"], ["SampleObject", "testSampleObject", sampleObject], ] as const;