aboutsummaryrefslogtreecommitdiff
path: root/tests/strcase/driver.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-12-06 09:13:17 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2024-12-06 11:20:01 +0200
commit44fba3192ad2401f33cccbe5d8ac88e3cf86b6f9 (patch)
tree0dbb7968280a875908daa925e68084830b3afdbc /tests/strcase/driver.cxx
parent794805e4c30e30f26286ac0c2d6a513d2391d38e (diff)
Rename some ucase(), lcase(), and sanitize_identifier() overloads to their make_*() variantsHEADmaster
Diffstat (limited to 'tests/strcase/driver.cxx')
-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);
}