From 2527c8f2a0fe0f3e886f678f9dc9d6b24632c2e0 Mon Sep 17 00:00:00 2001 From: Kai Ninomiya Date: Mon, 8 Jun 2020 19:03:20 -0700 Subject: [PATCH] fix idl_test to import Fixture instead of UnitTest (#207) --- src/webgpu/idl/idl_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webgpu/idl/idl_test.ts b/src/webgpu/idl/idl_test.ts index 525983ff1fd7..5eb9a61172d1 100644 --- a/src/webgpu/idl/idl_test.ts +++ b/src/webgpu/idl/idl_test.ts @@ -1,11 +1,11 @@ +import { Fixture } from '../../common/framework/fixture.js'; import { assert } from '../../common/framework/util/util.js'; -import { UnitTest } from '../../unittests/unit_test.js'; interface UnknownObject { [k: string]: unknown; } -export class IDLTest extends UnitTest { +export class IDLTest extends Fixture { /** * Asserts that an IDL interface has the expected members. */