Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump active_storage_validations from 1.3.0 to 1.4.0 #4877

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,12 @@ GEM
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
active_storage_validations (1.3.0)
active_storage_validations (1.4.0)
activejob (>= 6.1.4)
activemodel (>= 6.1.4)
activestorage (>= 6.1.4)
activesupport (>= 6.1.4)
marcel (>= 1.0.3)
activejob (7.0.8.7)
activesupport (= 7.0.8.7)
globalid (>= 0.3.6)
Expand Down
2 changes: 1 addition & 1 deletion spec/factories/facilities.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
sequence(:url_name) { |n| "facility#{Facility.count + (2 * n)}" }

trait :with_image do
file { File.open("#{Rails.root}/spec/files/cern.jpeg") }
file { Rack::Test::UploadedFile.new("spec/files/cern.jpeg", "image/jpeg") }
end

trait :with_order_notification do
Expand Down
Loading