From 2266ffc8b28cbcc18c3c5c4bb8993bfee85f4d7f Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Tue, 2 May 2023 08:21:42 -0700 Subject: [PATCH] [java] Fix a typo --- java/private/selenium_test.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/private/selenium_test.bzl b/java/private/selenium_test.bzl index 549a8ad23554a..93ec036108562 100644 --- a/java/private/selenium_test.bzl +++ b/java/private/selenium_test.bzl @@ -113,7 +113,7 @@ def selenium_test(name, test_class, size = "medium", browsers = BROWSERS.keys(), "-Dselenium.browser.remote.path=$(location @selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar)", ], # No need to lint remote tests as the code for non-remote is the same and they get linted - tags = BROWSERS[browser]["tags"] + tags + ["remote1", "no-lint"], + tags = BROWSERS[browser]["tags"] + tags + ["remote", "no-lint"], data = BROWSERS[browser]["data"] + data + [ "@selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar", ],