File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -252,11 +252,11 @@ def create_option(
252
252
obj = label
253
253
forwarded_notes = [
254
254
* obj .forwarded_from_jobs .all ().values_list (
255
- 'decisions__reasoning ' , flat = True
255
+ 'decisions__private_notes ' , flat = True
256
256
),
257
257
* obj .queue_moves .values_list ('notes' , flat = True ),
258
258
* obj .decisions .filter (action = DECISION_ACTIONS .AMO_REQUEUE ).values_list (
259
- 'reasoning ' , flat = True
259
+ 'private_notes ' , flat = True
260
260
),
261
261
]
262
262
is_appeal = obj .is_appeal
Original file line number Diff line number Diff line change @@ -1266,7 +1266,7 @@ def test_cinder_jobs_to_resolve_choices(self):
1266
1266
forwarded_to_job = cinder_job_forwarded ,
1267
1267
decision = ContentDecision .objects .create (
1268
1268
action = DECISION_ACTIONS .AMO_ESCALATE_ADDON ,
1269
- reasoning = 'Why o why' ,
1269
+ private_notes = 'Why o why' ,
1270
1270
addon = self .addon ,
1271
1271
),
1272
1272
)
You can’t perform that action at this time.
0 commit comments