summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2017-09-22 10:38:59 -0700
committerjashook <jashoo@microsoft.com>2017-09-22 10:38:59 -0700
commit1fa195ffef0ae446d630c03bd5682fcf67b241fe (patch)
treee10b414fb12093192f41878dee64eed0115a0f71 /tests
parent9e50cb5093a004aaa2591cfddb0cd6bbc4cd5a27 (diff)
downloadcoreclr-1fa195ffef0ae446d630c03bd5682fcf67b241fe.tar.gz
coreclr-1fa195ffef0ae446d630c03bd5682fcf67b241fe.tar.bz2
coreclr-1fa195ffef0ae446d630c03bd5682fcf67b241fe.zip
fix arm64_post_build typo
Diffstat (limited to 'tests')
-rw-r--r--tests/scripts/arm64_post_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/arm64_post_build.py b/tests/scripts/arm64_post_build.py
index efb7be8286..b731cecc4a 100644
--- a/tests/scripts/arm64_post_build.py
+++ b/tests/scripts/arm64_post_build.py
@@ -298,7 +298,7 @@ def validate_args(args):
validate_arg(scenario, lambda item: item.lower() in valid_scenarios)
validate_arg(key_location, lambda item: os.path.isfile(item))
validate_arg(force_update, lambda item: isinstance(item, bool))
- validate_arg(priority, lambda: item: item in valid_priorities)
+ validate_arg(priority, lambda item: item in valid_priorities)
arch = arch.lower()
testarch = testarch.lower()