Explorar o código

[about] Update admin_wizard.mako content test case (#1168)

Sungpeo Kook %!s(int64=5) %!d(string=hai) anos
pai
achega
413277e440
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      apps/about/src/about/tests.py

+ 2 - 2
apps/about/src/about/tests.py

@@ -41,10 +41,10 @@ class TestAbout(TestAboutBase, OozieBase):
 
   def test_admin_wizard_permissions(self):
     response = self.client_admin.get(reverse('about:index'))
-    assert_true('Check Configuration' in response.content, response.content)
+    assert_true('Step 1: <i class="fa fa-check"></i> Checks' in response.content, response.content)
 
     response = self.client.get(reverse('about:index'))
-    assert_false('Check Configuration' in response.content, response.content)
+    assert_false('Step 1: <i class="fa fa-check"></i> Checks' in response.content, response.content)
 
 
 class TestAboutWithNoCluster(TestAboutBase):