diff options
author | Jack Lloyd <[email protected]> | 2016-11-02 23:40:07 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-02 23:40:07 -0400 |
commit | e5e87be4d7767ce6894dfa8d9335b3d02593d401 (patch) | |
tree | 456204aa359d29d51aa4aaa904e7283dbd4179d4 | |
parent | 1a26a58b1529cc566c6c54b5c63296d3ded7d943 (diff) |
Remove stray non-ASCII chars which broke compilation on non UTF-8 code pages.
GH #707
-rw-r--r-- | src/tests/test_compression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_compression.cpp b/src/tests/test_compression.cpp index d76daf30f..d8dcdb410 100644 --- a/src/tests/test_compression.cpp +++ b/src/tests/test_compression.cpp @@ -26,7 +26,7 @@ const char* text_str = "The frumious Bandersnatch!'" "He took his vorpal sword in hand;" - "Long time the manxome foe he sought—" + "Long time the manxome foe he sought-" "So rested he by the Tumtum tree" "And stood awhile in thought." @@ -45,7 +45,7 @@ const char* text_str = "O frabjous day! Callooh! Callay!'" "He chortled in his joy." - "’Twas brillig, and the slithy toves" + "'Twas brillig, and the slithy toves" "Did gyre and gimble in the wabe:" "All mimsy were the borogoves," "And the mome raths outgrabe."; |