From e4632c989df3fa2c646dc6ff860a65124689d050 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Mon, 20 Jun 2016 13:28:16 -0700 Subject: [PATCH] fix spacing --- test_dj_database_url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_dj_database_url.py b/test_dj_database_url.py index d3955de..3c3bfd0 100644 --- a/test_dj_database_url.py +++ b/test_dj_database_url.py @@ -258,7 +258,7 @@ class DatabaseTestSuite(unittest.TestCase): assert url['PORT'] == '' def test_redis_parsing_max(self): - url = "redis://:mypassword@myhost:123/my-db-number?myoption=myvalue]" + url = "redis://:mypassword@myhost:123/my-db-number?myoption=myvalue]" assert dj_database_url.parse(url) == { 'ENGINE': 'django_redis.cache.RedisCache', 'HOST': 'myhost',