Skip to content

Commit

Permalink
[STTNHUB-292] fix: Use empty slugline for Placeholder Coverages
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Nov 24, 2023
1 parent e44f1a9 commit 426a070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/stt/stt_planning_ml.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def set_placeholder_coverage(self, item, tree):
"workflow_status": "draft",
"firstcreated": item.get("firstcreated"),
"planning": {
"slugline": "Placeholder Coverage",
"slugline": "",
"g2_content_type": "text",
"scheduled": item.get("planning_date"),
},
Expand Down
2 changes: 1 addition & 1 deletion server/tests/stt_planning_ml_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_placeholder_coverage(self):
2023, 5, 15, 14, 50, 3, tzinfo=tzoffset(None, 7200)
),
"planning": {
"slugline": "Placeholder Coverage",
"slugline": "",
"g2_content_type": "text",
"scheduled": datetime(2023, 5, 28, 21, 0, tzinfo=tzutc()),
},
Expand Down

0 comments on commit 426a070

Please sign in to comment.