aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/contributing/testing_ruby.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/contributing/testing_ruby.md b/doc/contributing/testing_ruby.md
index b8f3c004c9..93dff7cd4e 100644
--- a/doc/contributing/testing_ruby.md
+++ b/doc/contributing/testing_ruby.md
@@ -82,7 +82,7 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+
We can display the help of the `TESTS` option:
```
- $ make test-all TESTS=--help
+ make test-all TESTS=--help
```
If we would like to run both the `test/` and `bootstraptest/` test suites, we can run
@@ -140,7 +140,7 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+
To run a specific bundler spec file, we can use `BUNDLER_SPECS` as follows:
```
- $ make test-bundler BUNDLER_SPECS=commands/exec_spec.rb
+ make test-bundler BUNDLER_SPECS=commands/exec_spec.rb
```
## Troubleshooting