]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixup! Remove URL.__str__ causing a fallback to URL.__repr__
authorYassen Damyanov <yd@itlabs.bg>
Thu, 22 Sep 2022 12:38:09 +0000 (15:38 +0300)
committerYassen Damyanov <yd@itlabs.bg>
Thu, 22 Sep 2022 12:38:09 +0000 (15:38 +0300)
test/engine/test_parseconnect.py

index eecc4aef4fe69a289b7bec60418984ffd90535ce..f571b4bab74b469a171e7bc972a738c70c0e24aa 100644 (file)
@@ -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")