Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 5fe5182

Browse files
committed
fix: use null storage path instead of placeholder
1 parent 1a5f6e0 commit 5fe5182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

upload/tests/views/test_test_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def test_upload_test_results_file_not_found(db, client, mocker, mock_redis):
429429
"build_url": "test-build-url",
430430
"job": "test-job",
431431
"service": "github-actions",
432-
"url": "placeholder",
432+
"url": None,
433433
"commit": commit_sha,
434434
"report_code": None,
435435
"flags": None,

upload/views/test_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def post(self, request):
140140
url = None
141141
file_not_found = data.get("file_not_found", False)
142142
if file_not_found:
143-
storage_path = "placeholder"
143+
storage_path = None
144144
else:
145145
archive_service = ArchiveService(repo)
146146

0 commit comments

Comments
 (0)