From 41b17b61e27e2f69420d2fd526f9236b21cf4a0a Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Wed, 26 Dec 2012 16:04:34 -0800 Subject: spelling in test_migrations Change-Id: If6da7af1b6da9093610b7ce982acb048ed2e0ac0 --- nova/tests/test_migrations.py | 4 ++-- 1 file 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 -- cgit