Browse Source

[impala] Fix change of Editor name

Romain Rigaux 12 năm trước cách đây
mục cha
commit
d6c0f35
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      apps/impala/src/impala/tests.py

+ 1 - 1
apps/impala/src/impala/tests.py

@@ -49,7 +49,7 @@ class TestMockedImpala:
 
   def test_basic_flow(self):
     response = self.client.get("/impala/")
-    assert_true(re.search('Cloudera Impala Query UI', response.content), response.content)
+    assert_true(re.search('Impala Editor', response.content), response.content)
     assert_true('Query Editor' in response.content)
 
     response = self.client.get("/impala/execute/")