Skip to content

Commit

Permalink
fix rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrobayna committed Mar 6, 2024
1 parent ec6dd1e commit 1474cf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.2.2
4 changes: 2 additions & 2 deletions spec/bucket_store/key_storage_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def build_for(key)
describe "#stream" do
let(:stream) { build_for("inmemory://bucket/file1").stream }

it "will return an object" do
it "returns an object" do
expect { stream }.to_not raise_error
expect(stream).to_not be_nil
end
Expand Down Expand Up @@ -174,7 +174,7 @@ def build_for(key)
end

describe "#upload!" do
it "will upload from a file" do
it "uploads from a file" do
expect(stream.upload!(file: StringIO.new("hello"))).
to eq("inmemory://bucket/file1")
end
Expand Down

0 comments on commit 1474cf2

Please sign in to comment.