Merge pull request #24274 from eduNEXT/eric/py38_dict_insertion_order
[BD-6] Update dicts order to fix tests
This commit is contained in:
@@ -613,10 +613,10 @@ class CourseGradingTest(CourseTestCase):
|
||||
GRADING_POLICY_CHANGED_EVENT_TYPE,
|
||||
{
|
||||
'course_id': six.text_type(self.course.id),
|
||||
'event_transaction_type': 'edx.grades.grading_policy_changed',
|
||||
'grading_policy_hash': policy_hash,
|
||||
'user_id': six.text_type(self.user.id),
|
||||
'grading_policy_hash': policy_hash,
|
||||
'event_transaction_id': 'mockUUID',
|
||||
'event_transaction_type': 'edx.grades.grading_policy_changed',
|
||||
}
|
||||
) for policy_hash in {grading_policy_1, grading_policy_2, grading_policy_3}
|
||||
])
|
||||
|
||||
@@ -17,8 +17,8 @@ class RequireJSPathOverridesTest(TestCase):
|
||||
|
||||
OVERRIDES = {
|
||||
'jquery': 'common/js/vendor/jquery.js',
|
||||
'backbone': 'common/js/vendor/backbone.js',
|
||||
'text': 'js/vendor/text.js'
|
||||
'text': 'js/vendor/text.js',
|
||||
'backbone': 'common/js/vendor/backbone.js'
|
||||
}
|
||||
|
||||
OVERRIDES_JS = [
|
||||
|
||||
Reference in New Issue
Block a user