From 1efce8b0d8accb46846d3f014dc4235730fa3ecb Mon Sep 17 00:00:00 2001 From: Lee Jarvis Date: Mon, 1 May 2017 20:07:43 +0100 Subject: Fix non-deterministic test There's a FooOption defined in options_test.rb --- test/slop_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1