[ARVADOS-WORKBENCH2] updated: 2.1.0-213-geb40293b

Git user git at public.arvados.org
Mon Feb 22 20:24:53 UTC 2021


Summary of changes:
 src/services/common-service/common-service.test.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  eb40293bac1e910aacec5cd6d10941394e059a8f (commit)
      from  0c04dddf8855474ea629a6b55be38f15fbc4ac4c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit eb40293bac1e910aacec5cd6d10941394e059a8f
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Mon Feb 22 17:24:28 2021 -0300

    17319: Don't use a real axios instance if not needed.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/services/common-service/common-service.test.ts b/src/services/common-service/common-service.test.ts
index 14a15476..9a13d608 100644
--- a/src/services/common-service/common-service.test.ts
+++ b/src/services/common-service/common-service.test.ts
@@ -2,7 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import axios from "axios";
+import axios, { AxiosInstance } from "axios";
 import { ApiActions } from "~/services/api/api-actions";
 import { CommonService } from "./common-service";
 
@@ -15,7 +15,7 @@ describe("CommonService", () => {
     let commonService: CommonService<any>;
 
     beforeEach(() => {
-        commonService = new CommonService<any>(axios.create(), "resource", actions);
+        commonService = new CommonService<any>({} as AxiosInstance, "resource", actions);
     });
 
     it("throws an exception when passing uuid as empty string to get()", () => {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list