aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/ctype/isascii_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/src/ctype/isascii_test.cpp')
-rw-r--r--libc/test/src/ctype/isascii_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/test/src/ctype/isascii_test.cpp b/libc/test/src/ctype/isascii_test.cpp
index 80b0b1c..646756e 100644
--- a/libc/test/src/ctype/isascii_test.cpp
+++ b/libc/test/src/ctype/isascii_test.cpp
@@ -16,8 +16,8 @@ TEST(LlvmLibcIsAscii, DefaultLocale) {
// return a non-zero integer and everything else returns zero.
for (int ch = -255; ch < 255; ++ch) {
if (0 <= ch && ch <= 0x7f)
- EXPECT_NE(__llvm_libc::isascii(ch), 0);
+ EXPECT_NE(LIBC_NAMESPACE::isascii(ch), 0);
else
- EXPECT_EQ(__llvm_libc::isascii(ch), 0);
+ EXPECT_EQ(LIBC_NAMESPACE::isascii(ch), 0);
}
}