aboutsummaryrefslogtreecommitdiff
path: root/test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test.cc b/test.cc
index ef0d8c3..48a4c70 100644
--- a/test.cc
+++ b/test.cc
@@ -758,23 +758,23 @@ static_assert(
static_assert(
std::is_same<
tav::Boolean<true>,
- tav::All<
+ tav::Every<
tav::Even,
tav::List<tav::Int<2>, tav::Int<4>, tav::Int<6>>
>
>::value,
- "(all even? (list 2 4 6)) != #t"
+ "(every even? (list 2 4 6)) != #t"
);
static_assert(
std::is_same<
tav::Boolean<false>,
- tav::All<
+ tav::Every<
tav::Odd,
tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>
>
>::value,
- "(all odd? (list 1 2 3)) != #f"
+ "(every odd? (list 1 2 3)) != #f"
);
static_assert(