Skip to content

Commit 0faf7e0

Browse files
Correct backticks
1 parent a77b331 commit 0faf7e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aws-observability-terraform/test/appmodule/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- Run the following command to execute all Test functions, with function name pattern as Test*
1818
```go test -v -timeout 120m ./test/appmodule```
1919
For single Terratest case
20-
``go test -v -timeout 30m ./test/appmodule -run ^TestAppModule1$``
20+
```go test -v -timeout 30m ./test/appmodule -run ^TestAppModule1$```
2121
4. Go test command runs all functions starting with name Test*. So if you want to run a particular test case according to your use case, comment the rest of the Testing functions. It’ll take less time to run than running all test cases.
2222
5. In case of failure - you can determine the cause of failure, fix the issue and re-run the failed test case.
2323
6. For example if you only run testcase 3 you can expect successful test execution as follows:

aws-observability-terraform/test/sourcemodule/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- Run following command to execute all Test functions, with function name pattern as Test*
2121
```go test -v -timeout 100m ./test/sourcemodule```
2222
For single Terratest case
23-
``go test -v -timeout 20m ./test/sourcemodule -run ^TestSourceModule1$``
23+
```go test -v -timeout 20m ./test/sourcemodule -run ^TestSourceModule1$```
2424
5. Go test command runs all functions starting with name Test*. So if you want to run a particular test case according to your use case, comment the rest of the Testing functions. It’ll take less time to run than running all test cases.
2525
6. For example if you only run testcase 3 you can expect successful test execution as follows:
2626

0 commit comments

Comments
 (0)