diff options
| author | Matthew Draper <matthew@trebex.net> | 2017-08-14 23:48:21 +0930 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-14 23:48:21 +0930 |
| commit | a0bd13fca347d7d022cb96d46a2a9a7d343ab0a5 (patch) | |
| tree | b270a6f17bc3e0f191eae3b9b44eda55d824e2d2 /activestorage/test/controllers/variants_controller_test.rb | |
| parent | c4434171cdfda666ff3f164b680486d7cb2c5f3c (diff) | |
| parent | 2b6e85c1900138d8f1b07575abf187e4a8aee502 (diff) | |
| download | rails-a0bd13fca347d7d022cb96d46a2a9a7d343ab0a5.tar.gz rails-a0bd13fca347d7d022cb96d46a2a9a7d343ab0a5.tar.bz2 rails-a0bd13fca347d7d022cb96d46a2a9a7d343ab0a5.zip | |
Merge pull request #30250 from koic/should_escape_regexp_wildcard_character
Should escape regexp wildcard character `.`
Diffstat (limited to 'activestorage/test/controllers/variants_controller_test.rb')
| -rw-r--r-- | activestorage/test/controllers/variants_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/test/controllers/variants_controller_test.rb b/activestorage/test/controllers/variants_controller_test.rb index d9a85e16d9..0a049f3bc4 100644 --- a/activestorage/test/controllers/variants_controller_test.rb +++ b/activestorage/test/controllers/variants_controller_test.rb @@ -14,7 +14,7 @@ class ActiveStorage::VariantsControllerTest < ActionDispatch::IntegrationTest signed_blob_id: @blob.signed_id, variation_key: ActiveStorage::Variation.encode(resize: "100x100")) - assert_redirected_to(/racecar.jpg\?.*disposition=inline/) + assert_redirected_to(/racecar\.jpg\?.*disposition=inline/) image = read_image_variant(@blob.variant(resize: "100x100")) assert_equal 100, image.width |
