From f084329b68b299d120ca66eaa85edf6543406077 Mon Sep 17 00:00:00 2001 From: vanpipy Date: Tue, 27 Feb 2024 07:59:36 +0800 Subject: [PATCH] fix: typo --- tests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/README.md b/tests/README.md index 58b43cd7a..c8271ef71 100644 --- a/tests/README.md +++ b/tests/README.md @@ -31,7 +31,7 @@ One command has a unit test, because one `git-*` command is just do one thing, s For example, -1. The `git-alias` should has a test suite, so create `test_git_alias.py` in the directory `test` +1. The `git-alias` should have a test suite, so create `test_git_alias.py` in the directory `test` 2. Create a test class `TestGitAlias` in the `test_git_alias.py` 3. Create a test case `test_init`, and some test fixtures can be used, `temp_repo`, `named_temp_repo` etc. * `temp_repo` is module scoped fixture which create a temporary directory and available in the test suite `test_git_alias.py`.