aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/models/representation_test.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-01-10 12:12:04 -0500
committerGeorge Claghorn <george@basecamp.com>2018-01-10 12:12:04 -0500
commitd4cdd4a05f9874127f5052eb7909c7d921ad046e (patch)
tree8e8ff3f111f37e770a9d6da4548dab14a0a32135 /activestorage/test/models/representation_test.rb
parent5a593486f5c8a73f2be200a409b0a14dff51790c (diff)
downloadrails-d4cdd4a05f9874127f5052eb7909c7d921ad046e.tar.gz
rails-d4cdd4a05f9874127f5052eb7909c7d921ad046e.tar.bz2
rails-d4cdd4a05f9874127f5052eb7909c7d921ad046e.zip
Extract Analyzable and Representable concerns
Diffstat (limited to 'activestorage/test/models/representation_test.rb')
-rw-r--r--activestorage/test/models/representation_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/test/models/representation_test.rb b/activestorage/test/models/representation_test.rb
index 29fe61aee4..2a06b31c77 100644
--- a/activestorage/test/models/representation_test.rb
+++ b/activestorage/test/models/representation_test.rb
@@ -34,7 +34,7 @@ class ActiveStorage::RepresentationTest < ActiveSupport::TestCase
test "representing an unrepresentable blob" do
blob = create_blob
- assert_raises ActiveStorage::Blob::UnrepresentableError do
+ assert_raises ActiveStorage::UnrepresentableError do
blob.representation resize: "100x100"
end
end