aboutsummaryrefslogtreecommitdiffstats
path: root/test/cgi
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-15 02:37:19 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-15 02:37:19 +0000
commit10c73a7b44c452b46325b59bf925cae0c6d01598 (patch)
treefd81ca7407c21ae3db38ac803750d1cdb7785e7c /test/cgi
parentb89bd51d9c0419c3e032dce85b4d25f2331604a0 (diff)
downloadruby-10c73a7b44c452b46325b59bf925cae0c6d01598.tar.gz
Prevent timing failure.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/cgi')
-rw-r--r--test/cgi/test_cgi_header.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cgi/test_cgi_header.rb b/test/cgi/test_cgi_header.rb
index 58f82ba3bc..6b110a07f6 100644
--- a/test/cgi/test_cgi_header.rb
+++ b/test/cgi/test_cgi_header.rb
@@ -134,6 +134,7 @@ class CGIHeaderTest < Test::Unit::TestCase
## 'nph' is true
ENV['SERVER_SOFTWARE'] = 'Apache 2.2.0'
actual1 = cgi.header('nph'=>true)
+ now = Time.now
## when old IIS, NPH-mode is forced
ENV['SERVER_SOFTWARE'] = 'IIS/4.0'
actual2 = cgi.header
@@ -143,7 +144,6 @@ class CGIHeaderTest < Test::Unit::TestCase
actual4 = cgi.header
actual5 = cgi.header('status'=>'REDIRECT', 'location'=>'http://www.example.com/')
## assertion
- now = Time.now
expected = "HTTP/1.1 200 OK\r\n"
expected << "Date: #{CGI.rfc1123_date(now)}\r\n"
expected << "Server: Apache 2.2.0\r\n"