summaryrefslogtreecommitdiff
path: root/test/ext/asyncio/test_engine_py3k.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ext/asyncio/test_engine_py3k.py')
-rw-r--r--test/ext/asyncio/test_engine_py3k.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ext/asyncio/test_engine_py3k.py b/test/ext/asyncio/test_engine_py3k.py
index 0269aaaee..cdf70ca67 100644
--- a/test/ext/asyncio/test_engine_py3k.py
+++ b/test/ext/asyncio/test_engine_py3k.py
@@ -635,7 +635,9 @@ class AsyncEngineTest(EngineFixture):
def test_async_engine_from_config(self):
config = {
- "sqlalchemy.url": str(testing.db.url),
+ "sqlalchemy.url": testing.db.url.render_as_string(
+ hide_password=False
+ ),
"sqlalchemy.echo": "true",
}
engine = async_engine_from_config(config)