diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-12-14 11:11:12 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-12-14 11:11:12 +0000 |
commit | 665ef116ac9000d514c03fc61b216513f5cb7b25 (patch) | |
tree | 370c15cad195381a0abc6eb8e8e269d176c27289 /activerecord/test/cases | |
parent | 3ab49f87e43c2cc436f45a89b75e8a016d0fb677 (diff) | |
download | rails-665ef116ac9000d514c03fc61b216513f5cb7b25.tar.gz rails-665ef116ac9000d514c03fc61b216513f5cb7b25.tar.bz2 rails-665ef116ac9000d514c03fc61b216513f5cb7b25.zip |
Add return for 1.8.7
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/relation_scoping_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/relation_scoping_test.rb b/activerecord/test/cases/relation_scoping_test.rb index 1e2093273e..c7f6ab60ef 100644 --- a/activerecord/test/cases/relation_scoping_test.rb +++ b/activerecord/test/cases/relation_scoping_test.rb @@ -527,7 +527,7 @@ class DefaultScopingTest < ActiveRecord::TestCase def test_default_scope_is_threadsafe if in_memory_db? - skip "in memory db can't share a db between threads" + return skip "in memory db can't share a db between threads" end threads = [] |