From 5db9d6323eafa9754fa9bf2d4c5d3ca51cf05893 Mon Sep 17 00:00:00 2001 From: Christiaan Landman Date: Tue, 17 Sep 2024 11:20:24 +0200 Subject: [PATCH] Import cleanup. --- packages/web/tests/offline.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/tests/offline.test.ts b/packages/web/tests/offline.test.ts index ad757d39..bf7bf6fd 100644 --- a/packages/web/tests/offline.test.ts +++ b/packages/web/tests/offline.test.ts @@ -1,4 +1,4 @@ -import { AbstractPowerSyncDatabase, column, Column, ColumnType, Schema, Table } from '@powersync/common'; +import { AbstractPowerSyncDatabase, column, Schema, Table } from '@powersync/common'; import { PowerSyncDatabase } from '@powersync/web'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; @@ -143,7 +143,7 @@ describe('Schema Tests', () => { ]); }); - // Indicates that we don't need to refresh the refresh the schema explicitly + // Indicates that we don't need to refresh the the schema explicitly it('Correct source table after switching schema', async () => { const customerWatchTables = await getSourceTables(db, 'SELECT * FROM customers'); expect(customerWatchTables.includes('ps_data_local__local_customers')).toBeTruthy();