Skip to content

Commit

Permalink
Take into account that Windows switched to opt
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-c committed Jan 13, 2020
1 parent 8c4ecce commit beddb75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bot/code_coverage_bot/taskcluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_task(branch, revision, platform):
platform_name = "linux64-ccov-opt"
product = "firefox"
elif platform == "windows":
platform_name = "win64-ccov-debug"
platform_name = "win64-ccov-opt"
product = "firefox"
elif platform == "android-test":
platform_name = "android-test-ccov"
Expand Down
2 changes: 1 addition & 1 deletion bot/tests/test_taskcluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_get_task(

responses.add(
responses.GET,
"http://taskcluster.test/api/index/v1/task/gecko.v2.mozilla-central.revision.916103b8675d9fdb28b891cac235d74f9f475942.firefox.win64-ccov-debug",
"http://taskcluster.test/api/index/v1/task/gecko.v2.mozilla-central.revision.916103b8675d9fdb28b891cac235d74f9f475942.firefox.win64-ccov-opt",
json=LATEST_WIN,
status=200,
)
Expand Down

0 comments on commit beddb75

Please sign in to comment.