Skip to content

Commit 23c6351

Browse files
committed
no hiden tabs, use string escapes instead.
1 parent 7ffe04c commit 23c6351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/utils/test_utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ TEST(Utils, strcompress)
7979
compressed = utils::strcompress("some other text \r\n");
8080
ASSERT_THAT(compressed, StrEq("some other text"));
8181

82-
compressed = utils::strcompress("\v some text \f");
82+
compressed = utils::strcompress("\v some \t\t text \f");
8383
ASSERT_THAT(compressed, StrEq("some text"));
8484

8585
compressed = utils::strcompress(" some\t text ");

0 commit comments

Comments
 (0)