We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8811f5 commit 044930aCopy full SHA for 044930a
src/clusterfuzz/_internal/platforms/android/util.py
@@ -84,8 +84,9 @@ def can_testcase_run_on_platform(testcase_platform_id, current_platform_id):
84
# Check for the trunk stable versions - Z, A, B.
85
# Source: go/release-version_trunk-stable#examples
86
# If the current version is 'Z', 'A' or 'B', run the test case
87
- android_trunk_stable_versions = ['Z', 'A', 'B']
88
- if current_platform_id_fields[2] in android_trunk_stable_versions:
+ # Note: Use lowercase as platform_id is in lowercase
+ android_trunk_stable_versions = ['z', 'a', 'b']
89
+ if current_platform_id_fields[2].lower() in android_trunk_stable_versions:
90
return True
91
92
return False
0 commit comments