aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support/useful_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/support/useful_test.c')
-rw-r--r--test/core/support/useful_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/support/useful_test.c b/test/core/support/useful_test.c
index 7129dce632..34f4ce6870 100644
--- a/test/core/support/useful_test.c
+++ b/test/core/support/useful_test.c
@@ -57,12 +57,12 @@ int main(int argc, char **argv) {
GPR_ASSERT(GPR_ARRAY_SIZE(five) == 5);
GPR_ASSERT(GPR_BITSET(&bitset, 3) == 8);
- GPR_ASSERT(gpr_bitcount(bitset) == 1);
+ GPR_ASSERT(GPR_BITCOUNT(bitset) == 1);
GPR_ASSERT(GPR_BITGET(bitset, 3) == 1);
GPR_ASSERT(GPR_BITSET(&bitset, 1) == 10);
- GPR_ASSERT(gpr_bitcount(bitset) == 2);
+ GPR_ASSERT(GPR_BITCOUNT(bitset) == 2);
GPR_ASSERT(GPR_BITCLEAR(&bitset, 3) == 2);
- GPR_ASSERT(gpr_bitcount(bitset) == 1);
+ GPR_ASSERT(GPR_BITCOUNT(bitset) == 1);
GPR_ASSERT(GPR_BITGET(bitset, 3) == 0);
return 0;