File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1004,7 +1004,6 @@ def test_preferences_read(self):
10041004 resp = self .sg .preferences_read ()
10051005
10061006 expected = {
1007- "creative_review_settings" : "" ,
10081007 "date_component_order" : "month_day" ,
10091008 "duration_units" : "days" ,
10101009 "format_currency_fields_decimal_options" : "$1,000.99" ,
@@ -1027,6 +1026,12 @@ def test_preferences_read(self):
10271026 self .assertIn ("view_master_settings" , resp )
10281027 resp .pop ("view_master_settings" )
10291028
1029+ # Simply make sure creative review settings are there. These change frequently and we
1030+ # don't want to have the test break because Creative Review changed or because we didn't
1031+ # update the test.
1032+ self .assertIn ("creative_review_settings" , resp )
1033+ resp .pop ("creative_review_settings" )
1034+
10301035 self .assertEqual (expected , resp )
10311036
10321037 # all filtered
You can’t perform that action at this time.
0 commit comments