From 90be57f3592c2ce1cd4c9472ae2d586260c37354 Mon Sep 17 00:00:00 2001 From: Aaron Train Date: Tue, 18 Oct 2022 12:02:16 -0400 Subject: [PATCH] [fenix] No issue: Fix for None key-pair in Flank client-details Remove URL construction --- mobile/android/fenix/automation/taskcluster/androidTest/ui-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/fenix/automation/taskcluster/androidTest/ui-test.sh b/mobile/android/fenix/automation/taskcluster/androidTest/ui-test.sh index 135becb5de77..bca9d40421c3 100755 --- a/mobile/android/fenix/automation/taskcluster/androidTest/ui-test.sh +++ b/mobile/android/fenix/automation/taskcluster/androidTest/ui-test.sh @@ -138,7 +138,7 @@ set -o pipefail && $JAVA_BIN -jar $FLANK_BIN android run \ --app=$APK_APP --test=$APK_TEST \ --local-result-dir="${RESULTS_DIR}" \ --project=$GOOGLE_PROJECT \ - --client-details=commit=$MOBILE_BASE_REPOSITORY/commit/$MOBILE_HEAD_REV,pullRequest=$MOBILE_BASE_REPOSITORY/pull/$PULL_REQUEST_NUMBER \ + --client-details=commit=${MOBILE_HEAD_REV:-None},pullRequest=${PULL_REQUEST_NUMBER:-None} \ | tee flank.log exitcode=$? -- 2.11.4.GIT