1
Fork 0

Remove unused assertion and variable declaration.

This commit is contained in:
Bauke 2023-12-03 13:22:03 +01:00
parent f4fa51251e
commit 137c8eb290
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 2 additions and 2 deletions

View File

@ -33,10 +33,10 @@ const sampleObject: SampleObject = {
status: "passed",
};
const group = await setup("Value<T>", async (group) => {
await setup("Value<T>", 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;