summaryrefslogtreecommitdiff
path: root/test/executable/suite.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2016-02-13 16:57:03 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2016-02-13 16:57:03 +0100
commitff47c7a8cb46bb901f569aafb6f43ecc953571c1 (patch)
tree085a6f34630c8dd1f0293ac7f7b38b7029a6884f /test/executable/suite.rb
parent31c252ae9fd4b7e2f1ea2fd0009e7808d7691bcc (diff)
parent0a1f500d524ff0fb5eeafef051ccbb641954a87a (diff)
downloadcoderay-ff47c7a8cb46bb901f569aafb6f43ecc953571c1.tar.gz
Merge branch 'master' into tweak-function-colors
Diffstat (limited to 'test/executable/suite.rb')
-rw-r--r--test/executable/suite.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/executable/suite.rb b/test/executable/suite.rb
index ac0ff1d..997405c 100644
--- a/test/executable/suite.rb
+++ b/test/executable/suite.rb
@@ -18,9 +18,9 @@ class TestCodeRayExecutable < Test::Unit::TestCase
EXE_COMMAND =
if RUBY_PLATFORM === 'java' && `ruby --ng -e '' 2> /dev/null` && $?.success?
# use Nailgun
- "#{RUBY_COMMAND}--ng -w -I%s %s"
+ "#{RUBY_COMMAND}--ng -I%s %s"
else
- "#{RUBY_COMMAND} -w -I%s %s"
+ "#{RUBY_COMMAND} -I%s %s"
end % [ROOT_DIR + 'lib', EXECUTABLE]
def coderay args, options = {}