From 03f411217a1d63e1f5a1add8fd06f5e23820faab Mon Sep 17 00:00:00 2001 From: lisaah Date: Thu, 3 Feb 2022 10:57:55 -0500 Subject: [PATCH] Remove unused import. --- test/track.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/track.ts b/test/track.ts index 86b0a49..e9f641c 100644 --- a/test/track.ts +++ b/test/track.ts @@ -1,7 +1,7 @@ import avaTest, { TestInterface } from 'ava'; import sinon, { SinonStub } from 'sinon'; import { TrackClient } from '../lib/track'; -import { RegionUS, RegionEU, Region } from '../lib/regions'; +import { RegionUS, RegionEU } from '../lib/regions'; import { IdentifierType } from '../lib/types'; type TestContext = { client: TrackClient };