Merge "Fix typo in db migration test function name"

This commit is contained in:
Jenkins 2015-01-06 18:07:41 +00:00 committed by Gerrit Code Review
commit d934530b80
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class MigrationTestCase(test.TestCase):
downgrade.assert_called_once_with('fake_config', 'version_1')
@mock.patch('alembic.command.downgrade')
def test_downgrade_none_verison(self, downgrade):
def test_downgrade_none_version(self, downgrade):
migration.downgrade(None)
downgrade.assert_called_once_with('fake_config', 'base')