summaryrefslogtreecommitdiff
path: root/docs/testing-guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing-guide.md')
-rw-r--r--docs/testing-guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/testing-guide.md b/docs/testing-guide.md
index b7f3182..b40c1bb 100644
--- a/docs/testing-guide.md
+++ b/docs/testing-guide.md
@@ -28,7 +28,7 @@ With the GUI decoupling implementation complete, protocol simulations now run cl
```bash
# Use the interactive test script
-./test-protocols.sh
+./scripts/test-protocols.sh
# Run all protocol tests directly
java -cp target/classes:target/test-classes -Djava.awt.headless=true \
@@ -181,7 +181,7 @@ All tests now work in CI/CD environments:
- name: Run all tests
run: |
mvn test
- ./test-protocols.sh
+ ./scripts/test-protocols.sh
```
## Troubleshooting