From: Toshi MARUYAMA Date: Thu, 24 Mar 2016 06:38:52 +0000 (+0000) Subject: Merged r15252 from trunk to 3.1-stable X-Git-Tag: 3.1.5~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=99e89089051e37f69b8accfea57f65638c44b08b;p=redmine.git Merged r15252 from trunk to 3.1-stable NameError: uninitialized constant Redmine::ApiTest::GroupsTest::MultiJson git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@15279 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/integration/api_test/groups_test.rb b/test/integration/api_test/groups_test.rb index 56323dcf6..a9c40f536 100644 --- a/test/integration/api_test/groups_test.rb +++ b/test/integration/api_test/groups_test.rb @@ -67,7 +67,7 @@ class Redmine::ApiTest::GroupsTest < Redmine::ApiTest::Base assert_response :success assert_equal 'application/json', response.content_type - json = MultiJson.load(response.body) + json = ActiveSupport::JSON.decode(response.body) groups = json['groups'] assert_kind_of Array, groups group = groups.detect {|g| g['name'] == 'A Team'}