about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-12-25 19:30:12 +0000
committerEric Wong <normalperson@yhbt.net>2010-12-25 19:30:12 +0000
commitf970d87f9c0a4479a59685920a96c4d2fb2315e1 (patch)
treeb453238424a1b19a9e97b9af41086d0db52300fe
parentf62ef19a4aa3d3e4ce1aa37a499907ff776a8964 (diff)
downloadunicorn-f970d87f9c0a4479a59685920a96c4d2fb2315e1.tar.gz
Oops
-rw-r--r--test/unit/test_http_parser_xftrust.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/test_http_parser_xftrust.rb b/test/unit/test_http_parser_xftrust.rb
index c396bc4..db8cfa9 100644
--- a/test/unit/test_http_parser_xftrust.rb
+++ b/test/unit/test_http_parser_xftrust.rb
@@ -5,11 +5,11 @@ include Unicorn
 
 class HttpParserXFTrustTest < Test::Unit::TestCase
   def setup
-    assert HttpParser.trust_x_forward?
+    assert HttpParser.trust_x_forwarded?
   end
 
   def test_xf_trust_false_xfp
-    HttpParser.trust_x_forward = false
+    HttpParser.trust_x_forwarded = false
     parser = HttpParser.new
     parser.buf << "GET / HTTP/1.1\r\nHost: foo:\r\n" \
                   "X-Forwarded-Proto: https\r\n\r\n"
@@ -21,7 +21,7 @@ class HttpParserXFTrustTest < Test::Unit::TestCase
   end
 
   def test_xf_trust_false_xfs
-    HttpParser.trust_x_forward = false
+    HttpParser.trust_x_forwarded = false
     parser = HttpParser.new
     parser.buf << "GET / HTTP/1.1\r\nHost: foo:\r\n" \
                   "X-Forwarded-SSL: on\r\n\r\n"
@@ -33,6 +33,6 @@ class HttpParserXFTrustTest < Test::Unit::TestCase
   end
 
   def teardown
-    HttpParser.trust_x_forward = true
+    HttpParser.trust_x_forwarded = true
   end
 end