Procházet zdrojové kódy

HUE-7088 [core] fix test_ui_customizations

jdesjean před 8 roky
rodič
revize
bd8b7d8
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      desktop/core/src/desktop/tests.py

+ 2 - 2
desktop/core/src/desktop/tests.py

@@ -826,9 +826,9 @@ def test_ui_customizations():
 
   try:
     c = make_logged_in_client()
-    resp = c.get('/accounts/login/', follow=False)
+    resp = c.get('/hue/accounts/login/', follow=False)
     assert_true(custom_message in resp.content, resp)
-    resp = c.get('/about', follow=True)
+    resp = c.get('/hue/about', follow=True)
     assert_true(custom_message in resp.content, resp)
   finally:
     for old_conf in reset: