File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,17 +74,17 @@ class LayoutTest : public testing::Test {
74
74
strstr (block_text, strings[string_index]) != nullptr ) {
75
75
LOG (INFO) << " Found string " << strings[string_index]
76
76
<< " in block " << block_index
77
- << " of type " << kPolyBlockNames [blocks[string_index]];
77
+ << " of type " << kPolyBlockNames [blocks[string_index]] << " \n " ;
78
78
// Found this one.
79
79
++string_index;
80
80
} else if (it->BlockType () == blocks[string_index] &&
81
81
block_text == nullptr && strings[string_index][0 ] == ' \0 ' ) {
82
82
LOG (INFO) << " Found block of type " << kPolyBlockNames [blocks[string_index]]
83
- << " at block " << block_index;
83
+ << " at block " << block_index << " \n " ;
84
84
// Found this one.
85
85
++string_index;
86
86
} else {
87
- LOG (INFO) << " No match found in block with text:\n %s " << block_text;
87
+ LOG (INFO) << " No match found in block with text:\n " << block_text;
88
88
}
89
89
delete[] block_text;
90
90
++block_index;
You can’t perform that action at this time.
0 commit comments