Skip to content

Commit 552e9da

Browse files
committed
Merge pull request #297 from tetengo/trie_test_case
Correct the test case of trie #293 (cherry picked from commit 4d45c1a)
1 parent 741bd9e commit 552e9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/trie/test/src/test_tetengo.trie.trie.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace
4343
return static_cast<char>(uc);
4444
}
4545

46-
static const std::string kumamoto1{ 0xE7_c, 0x86_c, 0x8A_c, 0x6_c, 0x9C_c, 0xAC_c }; // Kumamoto in Kanji in UTF-8
46+
static const std::string kumamoto1{ 0xE7_c, 0x86_c, 0x8A_c, 0xE6_c, 0x9C_c, 0xAC_c }; // Kumamoto in Kanji in UTF-8
4747

4848
static const std::string tamana1{ 0xE7_c, 0x8E_c, 0x89_c, 0xE5_c, 0x90_c, 0x8D_c }; // Tamana in Kanji in UTF-8
4949

@@ -79,7 +79,7 @@ namespace
7979
0x00_c, 0x00_c, 0x00_c, 0x02_c,
8080
0x00_c, 0x00_c, 0x00_c, 0x00_c,
8181
0x00_c, 0x00_c, 0x00_c, 0x06_c,
82-
0xE7_c, 0x86_c, 0x8A_c, 0x06_c, 0x9C_c, 0xAC_c,
82+
0xE7_c, 0x86_c, 0x8A_c, 0xE6_c, 0x9C_c, 0xAC_c,
8383
0x00_c, 0x00_c, 0x00_c, 0x06_c,
8484
0xE7_c, 0x8E_c, 0x89_c, 0xE5_c, 0x90_c, 0x8D_c,
8585
// clang-format on
@@ -1042,7 +1042,7 @@ BOOST_AUTO_TEST_CASE(begin_end)
10421042

10431043
BOOST_AUTO_TEST_CASE(subtrie)
10441044
{
1045-
BOOST_TEST_PASSPOINT();
1045+
BOOST_TEST_PASSPOINT();
10461046

10471047
{
10481048
const tetengo::trie::trie<std::wstring, copy_detector<std::string>> trie_{};

0 commit comments

Comments
 (0)