From: Yassen Damyanov Date: Thu, 22 Sep 2022 12:38:09 +0000 (+0300) Subject: fixup! Remove URL.__str__ causing a fallback to URL.__repr__ X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1149536fdea27b2572ab94b99cc42477e621281f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixup! Remove URL.__str__ causing a fallback to URL.__repr__ --- 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")