From 596f6ec505349c5e4e1913823f8a767a997fdf21 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Sun, 5 Jun 2011 20:39:59 +0530 Subject: [PATCH] Loading multi_json instead of i18n gem. Don't know why it's giving error with i18n gem. Changing this as it dosn't matter with specific gem. --- activesupport/test/core_ext/kernel_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/test/core_ext/kernel_test.rb b/activesupport/test/core_ext/kernel_test.rb index 70e1e664a0..444bf9538a 100644 --- a/activesupport/test/core_ext/kernel_test.rb +++ b/activesupport/test/core_ext/kernel_test.rb @@ -60,7 +60,7 @@ class KernelTest < ActiveSupport::TestCase def test_require_library_or_gem_deprecated assert_deprecated do - require_library_or_gem 'i18n' + require_library_or_gem 'multi_json' end end end