Skip to content

Commit 09aaf4f

Browse files
authored
docs : Fix duplicated file extension in test command (#11935)
This commit fixes an issue in the llama.cpp project where the command for testing the llama-server object contained a duplicated file extension. The original command was: ./tests.sh unit/test_chat_completion.py.py -v -x It has been corrected to: ./tests.sh unit/test_chat_completion.py -v -x This change ensures that the test script correctly locates and executes the intended test file, preventing test failures due to an incorrect file name.
1 parent 73e2ed3 commit 09aaf4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ DEBUG=1 ./tests.sh -s -v -x
4848
To run all the tests in a file:
4949

5050
```shell
51-
./tests.sh unit/test_chat_completion.py.py -v -x
51+
./tests.sh unit/test_chat_completion.py -v -x
5252
```
5353

5454
To run a single test:

0 commit comments

Comments
 (0)