aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/math/cos_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/src/math/cos_test.cpp')
-rw-r--r--libc/test/src/math/cos_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/test/src/math/cos_test.cpp b/libc/test/src/math/cos_test.cpp
index f93d869..6d8aeaf 100644
--- a/libc/test/src/math/cos_test.cpp
+++ b/libc/test/src/math/cos_test.cpp
@@ -13,7 +13,7 @@
#include <math.h>
-namespace mpfr = __llvm_libc::testing::mpfr;
+namespace mpfr = LIBC_NAMESPACE::testing::mpfr;
DECLARE_SPECIAL_CONSTANTS(double)
@@ -27,6 +27,6 @@ TEST(LlvmLibccosTest, Range) {
if (isnan(x) || isinf(x) || x > _2pi || x < -_2pi)
continue;
- ASSERT_MPFR_MATCH(mpfr::Operation::Cos, x, __llvm_libc::cos(x), 1.0);
+ ASSERT_MPFR_MATCH(mpfr::Operation::Cos, x, LIBC_NAMESPACE::cos(x), 1.0);
}
}