aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/skylark/testing.md b/site/docs/skylark/testing.md
index f1a9225e6c..5957e6d059 100644
--- a/site/docs/skylark/testing.md
+++ b/site/docs/skylark/testing.md
@@ -133,7 +133,7 @@ def myrules_test_suite():
# ...
],
)
-````
+```
The test can be run with `bazel test //mypkg:myrules_test`.
@@ -442,7 +442,7 @@ def myhelpers_test_suite():
myhelper_test,
# ...
)
-````
+```
For more examples, see Skylib’s own [tests](https://github.com/bazelbuild/bazel-skylib/blob/master/tests/BUILD).