summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/error_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/error_test.rb b/test/error_test.rb
index 1bf1604..42c4b9d 100644
--- a/test/error_test.rb
+++ b/test/error_test.rb
@@ -12,7 +12,7 @@ describe Slop::MissingArgument do
begin
opts.parse %w(--name)
rescue Slop::MissingArgument => e
- assert_equal(e.getFlags(), ["-n", "--name"])
+ assert_equal(e.flags, ["-n", "--name"])
end
end