[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:
Kengo Seki 2018-05-10 10:12:01 +02:00 коммит произвёл Bolke de Bruin
Родитель e813c606fc
Коммит ae51daf893
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)