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-02 14:06:56 +0100
commitaef00e99f7bab5cfcd7cec10b9cbd5382107890e (patch)
tree49031458a8fe6dc2700efba104147326ba0afb7f
parent187e207303d40ed8f5c6d6c50441ed0ad1d6b373 (diff)
downloadslop-aef00e99f7bab5cfcd7cec10b9cbd5382107890e.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