Reduce dependence on internal metadata caching, refs #208.

This commit is contained in:
Friedrich Lindenberg
2017-09-02 19:35:01 +02:00
parent 672b0bc8c4
commit a2748b7fde
3 changed files with 32 additions and 44 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ class DatabaseTestCase(unittest.TestCase):
def test_load_table(self):
tbl = self.db.load_table('weather')
assert tbl.table == self.tbl.table
assert tbl.table.name == self.tbl.table.name
def test_query(self):
r = self.db.query('SELECT COUNT(*) AS num FROM weather').next()