From cfcf57c3746f71698269dc6cf6fa443c7a006960 Mon Sep 17 00:00:00 2001 From: Joao Duarte Date: Wed, 3 Mar 2021 10:53:29 +0000 Subject: [PATCH] [tests] change super to super() - jruby/jruby#6571 --- spec/outputs/http_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/outputs/http_spec.rb b/spec/outputs/http_spec.rb index 24aa344..b704759 100644 --- a/spec/outputs/http_spec.rb +++ b/spec/outputs/http_spec.rb @@ -169,7 +169,7 @@ def sinatra_run_wait(app, opts) context "with ignorable failing requests" do let(:url) { "http://localhost:#{port}/bad"} - let(:verb_behavior_config) { super.merge("ignorable_codes" => [400]) } + let(:verb_behavior_config) { super().merge("ignorable_codes" => [400]) } before do subject.multi_receive([event])