diff --git a/src/Explorer/Tabs/QueryTab/Indexadvisor.test.tsx b/src/Explorer/Tabs/QueryTab/ResultsView.test.tsx similarity index 99% rename from src/Explorer/Tabs/QueryTab/Indexadvisor.test.tsx rename to src/Explorer/Tabs/QueryTab/ResultsView.test.tsx index 81f80b2f1..700495dd4 100644 --- a/src/Explorer/Tabs/QueryTab/Indexadvisor.test.tsx +++ b/src/Explorer/Tabs/QueryTab/ResultsView.test.tsx @@ -64,7 +64,7 @@ jest.mock("Common/CosmosClient", () => ({ }), }), })); -jest.mock("./Indexadvisor", () => ({ +jest.mock("./StylesAdvisor", () => ({ useIndexAdvisorStyles: () => ({}), })); diff --git a/src/Explorer/Tabs/QueryTab/ResultsView.tsx b/src/Explorer/Tabs/QueryTab/ResultsView.tsx index 9584aff6d..a5a4278e3 100644 --- a/src/Explorer/Tabs/QueryTab/ResultsView.tsx +++ b/src/Explorer/Tabs/QueryTab/ResultsView.tsx @@ -43,8 +43,8 @@ import { logConsoleProgress } from "Utils/NotificationConsoleUtils"; import create from "zustand"; import { client } from "../../../Common/CosmosClient"; import { handleError } from "../../../Common/ErrorHandlingUtils"; -import { useIndexAdvisorStyles } from "./Indexadvisor"; import { ResultsViewProps } from "./QueryResultSection"; +import { useIndexAdvisorStyles } from "./StylesAdvisor"; enum ResultsTabs { Results = "results", QueryStats = "queryStats", diff --git a/src/Explorer/Tabs/QueryTab/Indexadvisor.ts b/src/Explorer/Tabs/QueryTab/StylesAdvisor.ts similarity index 100% rename from src/Explorer/Tabs/QueryTab/Indexadvisor.ts rename to src/Explorer/Tabs/QueryTab/StylesAdvisor.ts