diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-01-02 16:12:12 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-01-02 16:12:12 +0000 |
commit | 1ee38bbb4859bfdc47daafa9ab79ed59e2aa3dd9 (patch) | |
tree | 8417918bbf99931660c64b4433163e2b92b9fef1 | |
parent | f18923f316a4b6c464e1c68066a6196aed450894 (diff) | |
parent | 41b17b61e27e2f69420d2fd526f9236b21cf4a0a (diff) | |
download | nova-1ee38bbb4859bfdc47daafa9ab79ed59e2aa3dd9.tar.gz nova-1ee38bbb4859bfdc47daafa9ab79ed59e2aa3dd9.tar.xz nova-1ee38bbb4859bfdc47daafa9ab79ed59e2aa3dd9.zip |
Merge "spelling in test_migrations"
-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 |