Skip to content

Commit beddb75

Browse files
committed
Take into account that Windows switched to opt
1 parent 8c4ecce commit beddb75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bot/code_coverage_bot/taskcluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_task(branch, revision, platform):
2222
platform_name = "linux64-ccov-opt"
2323
product = "firefox"
2424
elif platform == "windows":
25-
platform_name = "win64-ccov-debug"
25+
platform_name = "win64-ccov-opt"
2626
product = "firefox"
2727
elif platform == "android-test":
2828
platform_name = "android-test-ccov"

bot/tests/test_taskcluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_get_task(
5252

5353
responses.add(
5454
responses.GET,
55-
"http://taskcluster.test/api/index/v1/task/gecko.v2.mozilla-central.revision.916103b8675d9fdb28b891cac235d74f9f475942.firefox.win64-ccov-debug",
55+
"http://taskcluster.test/api/index/v1/task/gecko.v2.mozilla-central.revision.916103b8675d9fdb28b891cac235d74f9f475942.firefox.win64-ccov-opt",
5656
json=LATEST_WIN,
5757
status=200,
5858
)

0 commit comments

Comments
 (0)