aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
diff options
context:
space:
mode:
authorKir Shatrov <shatrov@me.com>2017-07-09 20:41:28 +0300
committerKir Shatrov <shatrov@me.com>2017-07-19 22:27:07 +0300
commit831be98f9a6685da3410b0c9bf4143bd8dd647af (patch)
tree986057c19536bc2aafab76ab12c00245b9289b73 /activerecord/test/cases/migration_test.rb
parent526d4b8dc816c17e354e2e0243af16d10147c3f0 (diff)
downloadrails-831be98f9a6685da3410b0c9bf4143bd8dd647af.tar.gz
rails-831be98f9a6685da3410b0c9bf4143bd8dd647af.tar.bz2
rails-831be98f9a6685da3410b0c9bf4143bd8dd647af.zip
Use frozen-string-literal in ActiveRecord
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r--activerecord/test/cases/migration_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index eff6e09eb7..0fa43583ac 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "cases/helper"
require "cases/migration/helper"
require "bigdecimal/util"
@@ -912,7 +914,7 @@ class CopyMigrationsTest < ActiveRecord::TestCase
assert_equal [@migrations_path + "/4_people_have_hobbies.bukkits.rb", @migrations_path + "/5_people_have_descriptions.bukkits.rb"], copied.map(&:filename)
expected = "# This migration comes from bukkits (originally 1)"
- assert_equal expected, IO.readlines(@migrations_path + "/4_people_have_hobbies.bukkits.rb")[0].chomp
+ assert_equal expected, IO.readlines(@migrations_path + "/4_people_have_hobbies.bukkits.rb")[1].chomp
files_count = Dir[@migrations_path + "/*.rb"].length
copied = ActiveRecord::Migration.copy(@migrations_path, bukkits: MIGRATIONS_ROOT + "/to_copy")