From fb99a4e1669766d069b039b0d45b81f57c8ea5f5 Mon Sep 17 00:00:00 2001 From: John Cater Date: Tue, 26 Sep 2023 15:07:21 -0400 Subject: [PATCH] Update error message for no Android SDK. --- src/test/shell/bazel/android/android_sh_test.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/shell/bazel/android/android_sh_test.bzl b/src/test/shell/bazel/android/android_sh_test.bzl index 8c0bbc626bc40e..426fc9c278bfd0 100644 --- a/src/test/shell/bazel/android/android_sh_test.bzl +++ b/src/test/shell/bazel/android/android_sh_test.bzl @@ -26,7 +26,7 @@ CHECK_FOR_ANDROID_SDK = select( { "//external:has_androidsdk": [], }, - no_match_error = "This test requires an android SDK, and one isn't present. Make sure to uncomment the android rules in the WORKSPACE.", + no_match_error = "This test requires an android SDK, and one isn't present. Make sure to uncomment the android rules in the WORKSPACE.bzlmod.", ) def android_sh_test(create_test_with_released_tools = True, **kwargs):