From e2aec3b1a2e15e842e60b1e6f9210766c012f3a1 Mon Sep 17 00:00:00 2001 From: Karthick Ariyaratnam Date: Mon, 6 May 2024 21:34:09 -0400 Subject: [PATCH] Fix an error in unit/README (#447) This PR fixes an error in the unit/READMED.md (see https://github.com/valkey-io/valkey/issues/428) in order to correct the steps for running single unit test file. Signed-off-by: Karthick Ariyaratnam --- src/unit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unit/README.md b/src/unit/README.md index ce50e848e..1ef439eae 100644 --- a/src/unit/README.md +++ b/src/unit/README.md @@ -48,7 +48,7 @@ make valkey-unit-tests Running a single unit test file ``` -./valkey-unit-tests --single crc64.c +./valkey-unit-tests --single test_crc64.c ``` -Will just run the crc64.c file. \ No newline at end of file +Will just run the test_crc64.c file. \ No newline at end of file