aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-05-30 20:09:30 -0400
committerGeorge Claghorn <george@basecamp.com>2018-05-30 20:09:30 -0400
commitbd7ebf61fb4ee03b73da03bfd09039a5edd5c08e (patch)
tree738efa87b963433fe5c8900c3096d8e9266de359 /activestorage
parenta6d80e164f2f5566472370a84ab7cd98736666c4 (diff)
downloadrails-bd7ebf61fb4ee03b73da03bfd09039a5edd5c08e.tar.gz
rails-bd7ebf61fb4ee03b73da03bfd09039a5edd5c08e.tar.bz2
rails-bd7ebf61fb4ee03b73da03bfd09039a5edd5c08e.zip
Remove errant debugger call
Diffstat (limited to 'activestorage')
-rw-r--r--activestorage/test/models/blob_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activestorage/test/models/blob_test.rb b/activestorage/test/models/blob_test.rb
index 788e9af7b8..88ce0f868a 100644
--- a/activestorage/test/models/blob_test.rb
+++ b/activestorage/test/models/blob_test.rb
@@ -89,7 +89,6 @@ class ActiveStorage::BlobTest < ActiveSupport::TestCase
blob.open do |file|
assert file.binmode?
assert_equal 0, file.pos
- byebug
assert File.basename(file.path).starts_with?("ActiveStorage-#{blob.id}-")
assert file.path.ends_with?(".jpg")
assert_equal file_fixture("racecar.jpg").binread, file.read, "Expected downloaded file to match fixture file"