aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-05-24 14:12:54 -0400
committerGitHub <noreply@github.com>2017-05-24 14:12:54 -0400
commit0fa9084a18d1d9c4765c526b740f3f0b550055ca (patch)
tree5bc022b56a6b34affaf65017f2c764bc2d58ddcd /activerecord/test/cases
parent5cec1c9ac309e587ea5652a321d279b230a369d5 (diff)
parentbef95d372f9104a321cf17ac9f45316e9caac920 (diff)
downloadrails-0fa9084a18d1d9c4765c526b740f3f0b550055ca.tar.gz
rails-0fa9084a18d1d9c4765c526b740f3f0b550055ca.tar.bz2
rails-0fa9084a18d1d9c4765c526b740f3f0b550055ca.zip
Merge pull request #29203 from koic/bump_rubocop_and_fix_rubocop_offences
Bump RuboCop to 0.49.0 and fix offences
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/associations/callbacks_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/callbacks_test.rb b/activerecord/test/cases/associations/callbacks_test.rb
index 7721bd5cd9..f9d1e44595 100644
--- a/activerecord/test/cases/associations/callbacks_test.rb
+++ b/activerecord/test/cases/associations/callbacks_test.rb
@@ -128,7 +128,7 @@ class AssociationCallbacksTest < ActiveRecord::TestCase
assert ar.developers_log.empty?
alice = Developer.new(name: "alice")
ar.developers_with_callbacks << alice
- assert_equal"after_adding#{alice.id}", ar.developers_log.last
+ assert_equal "after_adding#{alice.id}", ar.developers_log.last
bob = ar.developers_with_callbacks.create(name: "bob")
assert_equal "after_adding#{bob.id}", ar.developers_log.last