[ARVADOS-WORKBENCH2] updated: 1.4.1-439-g7b26514e

Git user git at public.arvados.org
Tue Sep 29 20:58:41 UTC 2020


Summary of changes:
 src/common/redirect-to.test.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

       via  7b26514e0a1cbe9700d944097b80ec2f46b3d95d (commit)
      from  2e31a473f22dcea24eaa2e1dbf1b7078647548e1 (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 7b26514e0a1cbe9700d944097b80ec2f46b3d95d
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date:   Tue Sep 29 22:57:56 2020 +0200

    16812: More type fixes
    
    Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>

diff --git a/src/common/redirect-to.test.ts b/src/common/redirect-to.test.ts
index d1426c29..ad8ac9e0 100644
--- a/src/common/redirect-to.test.ts
+++ b/src/common/redirect-to.test.ts
@@ -19,7 +19,7 @@ describe('redirect-to', () => {
         reload: () => {},
         replace: () => {},
         assign: () => {},
-        ancestorOrigins: new DOMStringList(),
+        ancestorOrigins: [],
         href: '',
     };
 
@@ -33,7 +33,7 @@ describe('redirect-to', () => {
             window.location = {
                 ...locationTemplate,
                 href: `${location.href}?redirectTo=${redirectTo}`,
-            };
+            } as any;
             Object.defineProperty(window, 'sessionStorage', {
                 value: {
                     setItem: jest.fn(),
@@ -57,7 +57,7 @@ describe('redirect-to', () => {
             window.location = {
                 ...locationTemplate,
                 href: `${location.href}?redirectTo=${redirectTo}`,
-            };
+            } as any;;
             Object.defineProperty(window, 'sessionStorage', {
                 value: {
                     getItem: () => redirectTo,

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list