Skip to content

Commit f452cb8

Browse files
committed
Rubocop
1 parent 03a301b commit f452cb8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

spec/openai/client/chat_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@
6666

6767
it "succeeds" do
6868
VCR.use_cassette(cassette) do
69-
expect(response.dig("choices", 0, "message", "tool_calls", 0, "function", "name")).to eq("get_current_weather")
70-
expect(response.dig("choices", 0, "message", "tool_calls", 0, "function", "arguments")).to include("Peak District")
69+
expect(response.dig("choices", 0, "message", "tool_calls", 0, "function",
70+
"name")).to eq("get_current_weather")
71+
expect(response.dig("choices", 0, "message", "tool_calls", 0, "function",
72+
"arguments")).to include("Peak District")
7173
end
7274
end
7375
end

0 commit comments

Comments
 (0)