From 5be5afb8e7fa762e75eb04af19993e28309dcd68 Mon Sep 17 00:00:00 2001 From: Peter Boling Date: Thu, 18 Apr 2013 16:45:04 -0400 Subject: [PATCH] comments shouldn't lie --- test/test_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 311e385..57c6329 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -128,7 +128,7 @@ class Vote < ActiveRecord::Base end class Item < ActiveRecord::Base - # This is default, however because of random test run ordering we need to be explicit + # This is default, however because the setting is app-wide, and changed elsewhere, we need to be explicit ThumbsUp.configuration.voteable_relationship_name = :votes ThumbsUp.configuration.voter_relationship_name = :votes acts_as_voteable @@ -136,7 +136,7 @@ class Item < ActiveRecord::Base end class OtherItem < ActiveRecord::Base - # This is default, however because of random test run ordering we need to be explicit + # This is default, however because the setting is app-wide, and changed elsewhere, we need to be explicit ThumbsUp.configuration.voteable_relationship_name = :votes ThumbsUp.configuration.voter_relationship_name = :votes acts_as_voteable @@ -144,7 +144,7 @@ class OtherItem < ActiveRecord::Base end class User < ActiveRecord::Base - # This is default, however because of random test run ordering we need to be explicit + # This is default, however because the setting is app-wide, and changed elsewhere, we need to be explicit ThumbsUp.configuration.voteable_relationship_name = :votes ThumbsUp.configuration.voter_relationship_name = :votes acts_as_voter