1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove errant debugger call

This commit is contained in:
George Claghorn 2018-05-30 20:09:30 -04:00
parent a6d80e164f
commit bd7ebf61fb

View file

@ -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"