Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrazymaster <ken.i54k@gmail.com>2013-07-15 02:59:04 +0400
committercrazymaster <ken.i54k@gmail.com>2013-07-15 03:06:09 +0400
commit2185dd6f99474b69287e6f3cd2e4a24c3a75155b (patch)
tree7643b0aaa685d25e67d8011f0338b775ac0a6a77 /tests-clar/object
parentb74d4478df8c6d62c96b3bd067ae1987209583a6 (diff)
Fix typo
Diffstat (limited to 'tests-clar/object')
-rw-r--r--tests-clar/object/blob/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/object/blob/filter.c b/tests-clar/object/blob/filter.c
index 50b4af4f4..6293046d3 100644
--- a/tests-clar/object/blob/filter.c
+++ b/tests-clar/object/blob/filter.c
@@ -15,7 +15,7 @@ static const char *g_raw[NUM_TEST_OBJECTS] = {
"foo\nbar\rboth\r\nreversed\n\ragain\nproblems\r",
"123\n\000\001\002\003\004abc\255\254\253\r\n",
"\xEF\xBB\xBFThis is UTF-8\n",
- "\xEF\xBB\xBFほげほげ\r\nほげほげ\r\n",
+ "\xEF\xBB\xBF0xE30x810xBB0xE30x810x920xE30x810xBB0xE30x810x92\r\n0xE30x810xBB0xE30x810x920xE30x810xBB0xE30x810x92\r\n",
"\xFE\xFF\x00T\x00h\x00i\x00s\x00!"
};
static git_off_t g_len[NUM_TEST_OBJECTS] = { -1, -1, -1, -1, -1, 17, -1, -1, 12 };
@@ -38,7 +38,7 @@ static git_buf g_crlf_filtered[NUM_TEST_OBJECTS] = {
{ "foo\nbar\rboth\nreversed\n\ragain\nproblems\r", 0, 38 },
{ "123\n\000\001\002\003\004abc\255\254\253\n", 0, 16 },
{ "\xEF\xBB\xBFThis is UTF-8\n", 0, 17 },
- { "\xEF\xBB\xBFほげほげ\nほげほげ\n", 0, 29 },
+ { "\xEF\xBB\xBF0xE30x810xBB0xE30x810x920xE30x810xBB0xE30x810x92\n0xE30x810xBB0xE30x810x920xE30x810xBB0xE30x810x92\n", 0, 29 },
{ "\xFE\xFF\x00T\x00h\x00i\x00s\x00!", 0, 12 }
};