From 6cff0d6a7b52c36915fbf70c416998e4eb789fcd Mon Sep 17 00:00:00 2001 From: Shivshankar Date: Wed, 8 May 2024 15:38:50 -0400 Subject: [PATCH] Remove intsettest declaration from intset.h (#471) All the intset unit tests are migrated to new test framework as part of https://github.com/valkey-io/valkey/pull/344, but the old framework declaration is missed to remove from intset.h. So removed the code. Signed-off-by: Shivshankar-Reddy --- src/intset.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/intset.h b/src/intset.h index 2da0e9bf1d..52d215ab0f 100644 --- a/src/intset.h +++ b/src/intset.h @@ -50,8 +50,4 @@ uint32_t intsetLen(const intset *is); size_t intsetBlobLen(intset *is); int intsetValidateIntegrity(const unsigned char *is, size_t size, int deep); -#ifdef SERVER_TEST -int intsetTest(int argc, char *argv[], int flags); -#endif - #endif // __INTSET_H