From 77acdac75a5cf26f2c977aa613b8e4a052e56b7f Mon Sep 17 00:00:00 2001 From: Michael Youngstrom Date: Wed, 2 Aug 2017 11:42:50 -0400 Subject: [PATCH] Update number SQL queries --- .../contentstore/views/tests/test_course_index.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cms/djangoapps/contentstore/views/tests/test_course_index.py b/cms/djangoapps/contentstore/views/tests/test_course_index.py index 27ebb554b2..14221e030e 100644 --- a/cms/djangoapps/contentstore/views/tests/test_course_index.py +++ b/cms/djangoapps/contentstore/views/tests/test_course_index.py @@ -430,13 +430,13 @@ class TestCourseIndexArchived(CourseTestCase): @ddt.data( # Staff user has course staff access - (True, 'staff', None, 4, 20), - (False, 'staff', None, 4, 20), + (True, 'staff', None, 4, 21), + (False, 'staff', None, 4, 21), # Base user has global staff access - (True, 'user', ORG, 3, 16), - (False, 'user', ORG, 3, 16), - (True, 'user', None, 3, 16), - (False, 'user', None, 3, 16), + (True, 'user', ORG, 3, 17), + (False, 'user', ORG, 3, 17), + (True, 'user', None, 3, 17), + (False, 'user', None, 3, 17), ) @ddt.unpack def test_separate_archived_courses(self, separate_archived_courses, username, org, mongo_queries, sql_queries):