Skip to content

Commit 69ba82e

Browse files
committed
Rubocop
1 parent 52350e1 commit 69ba82e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spec/openai/client/chat_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
let(:parameters) { { model: model, messages: messages, stream: stream } }
1313
let(:content) { response.dig("choices", 0, "message", "content") }
1414
let(:provider) { nil }
15-
let(:cassette) { "#{"#{provider}_" if provider}#{model} #{'streamed' if stream} chat".downcase }
15+
let(:cassette) do
16+
"#{"#{provider}_" if provider}#{model} #{'streamed' if stream} chat".downcase
17+
end
1618

1719
context "with model: gpt-3.5-turbo" do
1820
let(:model) { "gpt-3.5-turbo" }

0 commit comments

Comments
 (0)