Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 15, 2023
1 parent a2ebd74 commit 5a79985
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_dj_database_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,9 @@ def test_ssl_require(self):

def test_options_int_values(self):
"""Ensure that options with integer values are parsed correctly."""
url = dj_database_url.parse("mysql://user:[email protected]:15036/db?connect_timout=3")
url = dj_database_url.parse(
"mysql://user:[email protected]:15036/db?connect_timout=3"
)
assert url["OPTIONS"] == {'connect_timout': 3}


Expand Down

0 comments on commit 5a79985

Please sign in to comment.