summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLee Jarvis <ljjarvis@gmail.com>2013-01-08 11:48:59 +0000
committerLee Jarvis <ljjarvis@gmail.com>2013-01-08 11:48:59 +0000
commit0ede01fe69518e2948f6500ac9d830a6890457fd (patch)
treec40272d34c745d58dd98115eca71d3daaaa0b750 /test
parent55a1ee79f603d89a76bc5dac7a5c75e97ed2d17c (diff)
downloadslop-0ede01fe69518e2948f6500ac9d830a6890457fd.tar.gz
avoid 1.9 specific syntax for tests
Diffstat (limited to 'test')
-rw-r--r--test/slop_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/slop_test.rb b/test/slop_test.rb
index b066e49..806f5ea 100644
--- a/test/slop_test.rb
+++ b/test/slop_test.rb
@@ -314,7 +314,7 @@ class SlopTest < TestCase
end
test "separators" do
- opts = Slop.new(banner: false) do
+ opts = Slop.new(:banner => false) do
on :foo
separator "hello"
separator "world"