[AIRFLOW-2447] Fix TestHiveMetastoreHook to run all cases
TestHiveMetastoreHook has a method which name doesn't start with test_. This PR renames it to be executed. Closes #3341 from sekikn/AIRFLOW-2447
This commit is contained in:
Родитель
e813c606fc
Коммит
ae51daf893
|
@ -208,7 +208,7 @@ class TestHiveMetastoreHook(HiveEnvironmentTest):
|
|||
pattern=self.table + "*")
|
||||
self.assertIn(self.table, {table.tableName for table in tables})
|
||||
|
||||
def get_databases(self):
|
||||
def test_get_databases(self):
|
||||
databases = self.hook.get_databases(pattern='*')
|
||||
self.assertIn(self.database, databases)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче