We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc6941 commit 6d82d71Copy full SHA for 6d82d71
1 file changed
spec/faraday_spec.rb
@@ -19,7 +19,9 @@
19
20
it 'uses method_missing on Faraday if there is no proxyable method' do
21
expected_message =
22
- if RUBY_VERSION >= '3.3'
+ if RUBY_VERSION >= '3.4'
23
+ "undefined method 'this_method_does_not_exist' for module Faraday"
24
+ elsif RUBY_VERSION >= '3.3'
25
"undefined method `this_method_does_not_exist' for module Faraday"
26
else
27
"undefined method `this_method_does_not_exist' for Faraday:Module"
0 commit comments