From 22849c0399bce1c5481e829f5386d15a163eb05d Mon Sep 17 00:00:00 2001 From: Mark Havekes Date: Fri, 14 Jun 2019 09:52:16 +0200 Subject: [PATCH] fix include in failing test --- test/action_controller/json_api/linked_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/action_controller/json_api/linked_test.rb b/test/action_controller/json_api/linked_test.rb index 3e38e112..69d8974d 100644 --- a/test/action_controller/json_api/linked_test.rb +++ b/test/action_controller/json_api/linked_test.rb @@ -82,7 +82,7 @@ module ActionController def render_collection_with_include setup_post - render json: [@post], adapter: :json_api, include: 'author, comments' + render json: [@post], adapter: :json_api, include: 'author,comments' end end