From 1149536fdea27b2572ab94b99cc42477e621281f Mon Sep 17 00:00:00 2001 From: Yassen Damyanov Date: Thu, 22 Sep 2022 15:38:09 +0300 Subject: [PATCH] fixup! Remove URL.__str__ causing a fallback to URL.__repr__ --- test/engine/test_parseconnect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/engine/test_parseconnect.py b/test/engine/test_parseconnect.py index eecc4aef4f..f571b4bab7 100644 --- a/test/engine/test_parseconnect.py +++ b/test/engine/test_parseconnect.py @@ -83,7 +83,7 @@ class URLTest(fixtures.TestBase): "E:/work/src/LEM/db/hello.db", None, ), u.database - u.render_as_string(hide_password=False) + eq_(u.render_as_string(hide_password=False), text) def test_rfc1738_password(self): u = url.make_url("dbtype://user:pass word + other%3Awords@host/dbname") -- 2.47.3