mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-12 03:45:34 +00:00
chore(developer): correct copy-paste error in finl test case of u16tok_str_compare_to_strtok
This commit is contained in:
parent
0e303cd38a
commit
298853bccb
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ TEST(kmx_u16_Test, u16tok_str_compare_to_strtok) {
|
|||
|
||||
// check sensitivity of ordering with multiple delimiters
|
||||
strcpy(str, "abc<def>ghi");
|
||||
const char *reverse_delim = "<>";
|
||||
const char *reverse_delim = "><";
|
||||
EXPECT_TRUE(!strcmp("abc", strtok(str, reverse_delim)));
|
||||
EXPECT_TRUE(!strcmp("def", strtok(nullptr, reverse_delim)));
|
||||
EXPECT_TRUE(!strcmp("ghi", strtok(nullptr, reverse_delim)));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue