diff --git a/heat/tests/db/test_migrations.py b/heat/tests/db/test_migrations.py index 926a75288..74fd8dc64 100644 --- a/heat/tests/db/test_migrations.py +++ b/heat/tests/db/test_migrations.py @@ -407,6 +407,9 @@ class HeatMigrationsCheckers(test_migrations.WalkVersionsMixin, else: self.assertColumnIsNullable(engine, 'service', column[0]) + def _check_052(self, engine, data): + self.assertColumnExists(engine, 'stack', 'convergence') + class TestHeatMigrationsMySQL(HeatMigrationsCheckers, test_base.MySQLOpportunisticTestCase):