From 57d0171d6863d2008fd8a7dbb41e7a7ecfb72234 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 11 Nov 2025 15:16:01 -0800 Subject: [PATCH] Remove unused integration test systems --- src/loaders/supportedIntegrationTestSystems.ts | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/loaders/supportedIntegrationTestSystems.ts diff --git a/src/loaders/supportedIntegrationTestSystems.ts b/src/loaders/supportedIntegrationTestSystems.ts deleted file mode 100644 index 8fd7d6d..0000000 --- a/src/loaders/supportedIntegrationTestSystems.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { InterchangeSystemBuilderArguments } from "../entities/InterchangeSystem"; -import { ChapmanApiBasedParkingRepositoryLoader } from "./parking/ChapmanApiBasedParkingRepositoryLoader"; - -export const supportedIntegrationTestSystems: InterchangeSystemBuilderArguments[] = [ - { - id: "1", - name: "Chapman University", - passioSystemId: "263", - parkingSystemId: ChapmanApiBasedParkingRepositoryLoader.id, - }, -];