summary refs log tree commit
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-04-18 00:16:22 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-04-18 00:16:22 -0700
commitf8729c23447af5dfce99a8b93b2995b47a55d178 (patch)
treebabcebb4c2efa95aa14bfd0a61c60c181c250a2a
parentc9e313ff7f34fd92b91d10fdc123a761f2fc20d6 (diff)
parent3f5437271ba640364de46af8d7a1a3402c4a4150 (diff)
downloadrack-f8729c23447af5dfce99a8b93b2995b47a55d178.tar.gz
Merge pull request #976 from prathamesh-sonpatki/fix-lighttpd-tests
 Run lighttpd tests if it's present on the system
-rw-r--r--test/helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.rb b/test/helper.rb
index 64f6d30f..7af0f27b 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -2,7 +2,7 @@ require 'minitest/autorun'
 
 module Rack
   class TestCase < Minitest::Test
-    if `which lighttpd` && !$?.success?
+    if `which lighttpd` && $?.success?
       begin
         # Keep this first.
         LIGHTTPD_PID = fork {