From 4f591fce261393f9e63405c8dfd48400a875ebb0 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Tue, 7 Sep 2010 21:15:22 -0700 Subject: [PATCH] Last of cleanup, including removing fake_storage flage --- nova/test.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nova/test.py b/nova/test.py index 4eb5c1c5..c392c8a8 100644 --- a/nova/test.py +++ b/nova/test.py @@ -39,12 +39,6 @@ FLAGS = flags.FLAGS flags.DEFINE_bool('fake_tests', True, 'should we use everything for testing') -from sqlalchemy import create_engine -from sqlalchemy.ext.declarative import declarative_base - -engine = create_engine('sqlite:///:memory:', echo=True) -Base = declarative_base() -Base.metadata.create_all(engine) def skip_if_fake(func): """Decorator that skips a test if running in fake mode"""