summaryrefslogtreecommitdiff
path: root/test/engine/test_parseconnect.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/engine/test_parseconnect.py')
-rw-r--r--test/engine/test_parseconnect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/test_parseconnect.py b/test/engine/test_parseconnect.py
index 19fce5c18..00d9390b4 100644
--- a/test/engine/test_parseconnect.py
+++ b/test/engine/test_parseconnect.py
@@ -319,7 +319,7 @@ class URLTest(fixtures.TestBase):
"%s must be a string" % argname,
url.URL.create,
"somedriver",
- **{argname: value}
+ **{argname: value},
)
@testing.combinations("username", "host", "database", argnames="argname")
@@ -352,7 +352,7 @@ class URLTest(fixtures.TestBase):
TypeError,
"%s must be a string" % argname,
u1.set,
- **{argname: 35.8}
+ **{argname: 35.8},
)
def test_only_str_query_key_constructor(self):