aboutsummaryrefslogtreecommitdiff
path: root/tests/strcase
diff options
context:
space:
mode:
Diffstat (limited to 'tests/strcase')
-rw-r--r--tests/strcase/driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/strcase/driver.cxx b/tests/strcase/driver.cxx
index 8e964a6..2d1ca6f 100644
--- a/tests/strcase/driver.cxx
+++ b/tests/strcase/driver.cxx
@@ -61,9 +61,9 @@ main ()
assert (lcase ("") == string ());
string s (upper);
- assert (lcase (s) == lower);
+ assert (make_lcase (s) == lower);
s = lower;
- ucase (const_cast<char*> (s.data ()), s.size ());
+ make_ucase (const_cast<char*> (s.data ()), s.size ());
assert (s == upper);
}