From 8530e819d605d8d92ade73fec0b3a90408d0a496 Mon Sep 17 00:00:00 2001 From: Jake Moshenko Date: Wed, 2 Jul 2014 19:10:40 -0400 Subject: [PATCH] Fix the test config to really use an in-memory database. --- test/testconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testconfig.py b/test/testconfig.py index b7d79767e..8d7989c6e 100644 --- a/test/testconfig.py +++ b/test/testconfig.py @@ -15,7 +15,7 @@ class FakeTransaction(object): class TestConfig(DefaultConfig): TESTING = True - DB_URL = 'sqlite:///:memory:' + DB_URI = 'sqlite:///:memory:' DB_CONNECTION_ARGS = {} @staticmethod