Docs: fix markdown syntax
I noticed a rendering error on go/androidx-testing. This is my best attempt to fix the markdown formatting for this content.
PiperOrigin-RevId: 520150424
Change-Id: I5d4b1e57028e2e21a83141e22118acd08b4aa4eb
diff --git a/docs/testing.md b/docs/testing.md
index 3b0d40a..8050e0a 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -256,17 +256,16 @@
file
If you want to run a specific unit test, you can do it using
-[`--tests` filtering](https://docs.gradle.org/current/userguide/java_testing.html#test_filtering)
+[`--tests` filtering](https://docs.gradle.org/current/userguide/java_testing.html#test_filtering):
+
```shell
-
# Run a test for an Android library on a connected device
-
./gradlew <project-name>:test --tests androidx.core.view.DisplayCompatTest
# Run a test for a JVM library
-
./gradlew <project-name>:testDebugUnitTest --tests
-androidx.core.view.DisplayCompatTest ```
+androidx.core.view.DisplayCompatTest
+```
## Test apps {#testapps}