17319: Unit test code cleanup.
[arvados-workbench2.git] / src / services / common-service / common-service.test.ts
index 6754710534ca247a7048b914d8e717671e8b1c12..14a154767fbc2b93f08cfdb3778e360efeea4093 100644 (file)
@@ -2,7 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import axios, { AxiosInstance } from "axios";
+import axios from "axios";
 import { ApiActions } from "~/services/api/api-actions";
 import { CommonService } from "./common-service";
 
@@ -12,12 +12,10 @@ const actions: ApiActions = {
 };
 
 describe("CommonService", () => {
-    let axiosInstance: AxiosInstance;
     let commonService: CommonService<any>;
 
     beforeEach(() => {
-        commonService = new CommonService<any>(axiosInstance, "resource", actions);
-        axiosInstance = axios.create();
+        commonService = new CommonService<any>(axios.create(), "resource", actions);
     });
 
     it("throws an exception when passing uuid as empty string to get()", () => {