summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2017-05-01 20:07:43 +0100
committerLee Jarvis <leejarvis@fastmail.com>2017-05-01 20:07:43 +0100
commit1efce8b0d8accb46846d3f014dc4235730fa3ecb (patch)
tree04ca22c97512ea535b149334a7f3e302b44d91ca
parentf560342a90e923a1001861819b03c4572c2563a9 (diff)
downloadslop-1efce8b0d8accb46846d3f014dc4235730fa3ecb.tar.gz
Fix non-deterministic test
There's a FooOption defined in options_test.rb
-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 f6fb408..2610ebd 100644
--- a/test/slop_test.rb
+++ b/test/slop_test.rb
@@ -7,7 +7,7 @@ describe Slop do
end
it "returns false if the option is not defined" do
- assert_equal false, Slop.option_defined?("Foo")
+ assert_equal false, Slop.option_defined?("FooBar")
end
it "returns true if the option is defined" do