diff options
author | Joe Gordon <jogo@cloudscaling.com> | 2012-12-26 16:04:34 -0800 |
---|---|---|
committer | Joe Gordon <jogo@cloudscaling.com> | 2012-12-26 16:04:34 -0800 |
commit | 41b17b61e27e2f69420d2fd526f9236b21cf4a0a (patch) | |
tree | 843c60787b25a16c26628425540d88b7e817e146 | |
parent | 094d6b294bec70501f9bbdce3df63c8a328e06bf (diff) | |
download | nova-41b17b61e27e2f69420d2fd526f9236b21cf4a0a.tar.gz nova-41b17b61e27e2f69420d2fd526f9236b21cf4a0a.tar.xz nova-41b17b61e27e2f69420d2fd526f9236b21cf4a0a.zip |
spelling in test_migrations
Change-Id: If6da7af1b6da9093610b7ce982acb048ed2e0ac0
-rw-r--r-- | nova/tests/test_migrations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/test_migrations.py b/nova/tests/test_migrations.py index f0a047b1f..125b2fe36 100644 --- a/nova/tests/test_migrations.py +++ b/nova/tests/test_migrations.py @@ -61,7 +61,7 @@ def _is_mysql_avail(user="openstack_citest", engine = sqlalchemy.create_engine(connect_uri) connection = engine.connect() except Exception: - # intential catch all to handle exceptions even if we don't + # intentionally catch all to handle exceptions even if we don't # have mysql code loaded at all. return False else: @@ -217,7 +217,7 @@ class TestMigrations(test.TestCase): if not _have_mysql(): self.skipTest("mysql not available") # add this to the global lists to make reset work with it, it's removed - # automaticaly in tearDown so no need to clean it up here. + # automatically in tearDown so no need to clean it up here. connect_string = _mysql_get_connect_string() engine = sqlalchemy.create_engine(connect_string) self.engines["mysqlcitest"] = engine |