From 360a445f686b5ac98969a1faac16c37d337cf4a4 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 16 Feb 2017 10:18:32 -0800 Subject: [PATCH] Fix missed test --- daphne/tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daphne/tests/test_utils.py b/daphne/tests/test_utils.py index c1a835e..c0f4b6d 100644 --- a/daphne/tests/test_utils.py +++ b/daphne/tests/test_utils.py @@ -100,7 +100,7 @@ class TestXForwardedForWsParsing(TestCase): } self.assertEqual( parse_x_forwarded_for(headers), - ['10.1.2.4', 0] + ['10.1.2.3', 0] ) def test_original(self):