[tests/buffer] Revert unintended whitespace changes
From 9e5538d6a3
Tried squashing into, but too much merge conflict.
This commit is contained in:
parent
78fb6a11af
commit
540d2cdddb
|
@ -911,12 +911,14 @@ test_buffer_serialize_deserialize (void)
|
|||
unsigned int num_glyphs, consumed;
|
||||
hb_buffer_t *indeterminate = hb_buffer_get_empty ();
|
||||
hb_buffer_serialize (indeterminate, 0, (unsigned) -1,
|
||||
test, sizeof(test), &consumed, NULL, HB_BUFFER_SERIALIZE_FORMAT_JSON,
|
||||
test, sizeof(test), &consumed, NULL,
|
||||
HB_BUFFER_SERIALIZE_FORMAT_JSON,
|
||||
HB_BUFFER_SERIALIZE_FLAG_DEFAULT);
|
||||
g_assert_cmpstr ( test, ==, "[]");
|
||||
|
||||
hb_buffer_serialize (indeterminate, 0, (unsigned) - 1,
|
||||
test, sizeof(test), &consumed, NULL, HB_BUFFER_SERIALIZE_FORMAT_TEXT,
|
||||
test, sizeof(test), &consumed, NULL,
|
||||
HB_BUFFER_SERIALIZE_FORMAT_TEXT,
|
||||
HB_BUFFER_SERIALIZE_FLAG_DEFAULT);
|
||||
g_assert_cmpstr ( test, ==, "!!");
|
||||
|
||||
|
|
Loading…
Reference in New Issue