test-backend: Remove outdated reference to MarkdownTest class.

The tests and test classes have been slightly renamed over time.
This commit is contained in:
KIRTAN AGARWAL
2025-04-02 06:28:22 +05:30
committed by GitHub
parent 465971171d
commit b1d955379e
3 changed files with 7 additions and 7 deletions

View File

@@ -33,8 +33,8 @@ typically involve running subsets of the tests with commands like these:
```bash
./tools/lint zerver/models/__init__.py # Lint the file you just changed
./tools/test-backend zerver.tests.test_markdown.MarkdownTest.test_inline_youtube
./tools/test-backend MarkdownTest # Run `test-backend --help` for more options
./tools/test-backend zerver.tests.test_markdown.MarkdownEmbedsTest.test_inline_youtube
./tools/test-backend MarkdownEmbedsTest # Run `test-backend --help` for more options
./tools/test-js-with-node util
# etc.
```