We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005ff76 commit 57c8797Copy full SHA for 57c8797
spec/outputs/tcp_spec.rb
@@ -10,7 +10,7 @@
10
} }
11
12
context "when enabling SSL" do
13
- let(:config) { super.merge("ssl_enable" => true) }
+ let(:config) { super().merge("ssl_enable" => true) }
14
context "and not providing a certificate/key pair" do
15
it "registers without error" do
16
expect { subject.register }.to_not raise_error
@@ -24,7 +24,7 @@
24
IO.write(path, certificate.to_s)
25
path
26
end
27
- let(:config) { super.merge("ssl_cert" => true, "ssl_cert" => cert_file) }
+ let(:config) { super().merge("ssl_cert" => true, "ssl_cert" => cert_file) }
28
29
30
0 commit comments