aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-05-04 01:22:50 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-05-04 01:22:50 +0200
commit0d8dfd0ff56c1e2395ca435b97e62a2ed32817c0 (patch)
tree0d76a5c44cf36092e6b31a487120eebf4a3f9384 /test
parent250a3031b25530ccf172c67772d861095dac8022 (diff)
Remove useless branch
Diffstat (limited to 'test')
-rw-r--r--test/lower-test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/lower-test.c b/test/lower-test.c
index f6069ba..b8e7228 100644
--- a/test/lower-test.c
+++ b/test/lower-test.c
@@ -56,9 +56,7 @@ test(const char8_t *line, int id)
flags.len = strlen(flags.p);
enum caseflags cf = 0;
- if (u8eq(U8_ARGS(flags), U8_ARGS(U8("ẞ"))))
- cf |= CF_ẞ;
- else if (u8eq(U8_ARGS(flags), U8_ARGS(U8("AZ"))))
+ if (u8eq(U8_ARGS(flags), U8_ARGS(U8("AZ"))))
cf |= CF_LANG_AZ;
else if (u8eq(U8_ARGS(flags), U8_ARGS(U8("LT"))))
cf |= CF_LANG_LT;