From b2756e79d3fe091ee1df973faa1361d6a069bc7b Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 4 Feb 2014 16:04:18 +0100 Subject: [PATCH] Fixed test_cleardb_parsing test --- 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 3d9affd..804b955 100644 --- a/test_dj_database_url.py +++ b/test_dj_database_url.py @@ -54,7 +54,7 @@ class DatabaseTestSuite(unittest.TestCase): assert url['HOST'] == 'us-cdbr-east.cleardb.com' assert url['USER'] == 'bea6eb025ca0d8' assert url['PASSWORD'] == '69772142' - assert url['PORT'] is '' + assert url['PORT'] == '' def test_database_url(self): del os.environ['DATABASE_URL']