Skip to content

Commit e6f0f64

Browse files
author
jordanbreen28
committed
Revert "(maint) - fix rubocop"
This reverts commit a16dc28.
1 parent e114a11 commit e6f0f64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rspec-puppet/matchers/dynamic_matchers.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def method_missing(method, *args, &block)
2626
end
2727

2828
module TypeMatchers
29-
def method_missing(method, ...)
30-
return RSpec::Puppet::TypeMatchers::CreateGeneric.new(method, ...) if method == :be_valid_type
29+
def method_missing(method, *args, &block)
30+
return RSpec::Puppet::TypeMatchers::CreateGeneric.new(method, *args, &block) if method == :be_valid_type
3131

3232
super
3333
end

0 commit comments

Comments
 (0)