Skip to content

Commit 7d1d5f4

Browse files
committed
remove unnecessary rubocop:disable rule
1 parent feeb133 commit 7d1d5f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/ruby_llm/chat_content_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
provider = model_info[:provider]
104104
model = model_info[:model]
105105

106-
it "#{provider}/#{model} can understand local videos" do # rubocop:disable RSpec/MultipleExpectations,RSpec/ExampleLength
106+
it "#{provider}/#{model} can understand local videos" do
107107
chat = RubyLLM.chat(model: model, provider: provider)
108108
response = chat.ask('What do you see in this video?', with: { video: video_path })
109109

@@ -114,7 +114,7 @@
114114
expect(chat.messages.first.content.attachments.first.mime_type).to eq('video/mp4')
115115
end
116116

117-
it "#{provider}/#{model} can understand remote videos without extension" do # rubocop:disable RSpec/MultipleExpectations,RSpec/ExampleLength
117+
it "#{provider}/#{model} can understand remote videos without extension" do
118118
chat = RubyLLM.chat(model: model, provider: provider)
119119
response = chat.ask('What do you see in this video?', with: video_url)
120120

0 commit comments

Comments
 (0)