From d02f51f2622e4070ce56ae665ee3c202a114f3ad Mon Sep 17 00:00:00 2001 From: titusfortner Date: Thu, 18 Jan 2024 12:59:36 -0600 Subject: [PATCH] update readme with correct bazel syntax for .NET tests --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63fc15f567eda..1d6250d4f1a53 100644 --- a/README.md +++ b/README.md @@ -397,12 +397,12 @@ bazel test //dotnet/test/common:AllTests --pin_browsers=true You can run specific tests by specifying the class name: ```shell -bazel test //dotnet/test/common/ElementFindingTest --pin_browsers=true +bazel test //dotnet/test/common:ElementFindingTest --pin_browsers=true ``` If the module supports multiple browsers: ```shell -bazel test //dotnet/test/common/ElementFindingTest-edge --pin_browsers=true +bazel test //dotnet/test/common:ElementFindingTest-edge --pin_browsers=true ```