From a3c46e5bda2277d7f7ace30d9d205075302906c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aitor=20Mag=C3=A1n?= Date: Thu, 3 Sep 2015 09:41:49 +0200 Subject: [PATCH] Fix test --- ckanext/datarequests/tests/test_ui_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckanext/datarequests/tests/test_ui_controller.py b/ckanext/datarequests/tests/test_ui_controller.py index 5e87920f..83a09290 100644 --- a/ckanext/datarequests/tests/test_ui_controller.py +++ b/ckanext/datarequests/tests/test_ui_controller.py @@ -691,7 +691,7 @@ def _get_action(action): datarequest_show.assert_called_once_with(self.expected_context, {'id': datarequest_id}) if organization: - organization_show.assert_called_once_with({'ignore_auth': True}, {'id': organization}) + organization_show.assert_called_once_with({'ignore_auth': True}, {'id': organization, 'include_datasets': True}) else: package_search.assert_called_once_with({'ignore_auth': True}, {'rows': 500})