forgot a print statement

This commit is contained in:
Friedrich Lindenberg 2017-09-02 20:40:52 +02:00
parent 13cbff37fe
commit bf17deeb7f

View File

@ -21,10 +21,6 @@ class DatabaseTestCase(unittest.TestCase):
def setUp(self):
os.environ.setdefault('DATABASE_URL', 'sqlite:///:memory:')
self.db = connect(os.environ['DATABASE_URL'])
for table in self.db.tables:
self.db[table].drop()
self.db.commit()
print 'XXX', self.db.tables
self.tbl = self.db['weather']
self.tbl.insert_many(TEST_DATA)