We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 844d5d2 commit 44c2b41Copy full SHA for 44c2b41
spec/stream_spec.rb
@@ -53,8 +53,8 @@
53
processor.send(:process_message, delete_message, LaunchDarkly::DELETE)
54
expect(processor.instance_variable_get(:@store).get("key")).to eq(nil)
55
end
56
- it "will log an error if the method is not recognized" do
57
- expect(processor.instance_variable_get(:@config).logger).to receive :error
+ it "will log a warning if the method is not recognized" do
+ expect(processor.instance_variable_get(:@config).logger).to receive :warn
58
processor.send(:process_message, put_message, "get")
59
60
0 commit comments