diff options
Diffstat (limited to 'tests/unit/unittest/gtest-creator-printing.cpp')
-rw-r--r-- | tests/unit/unittest/gtest-creator-printing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/unittest/gtest-creator-printing.cpp b/tests/unit/unittest/gtest-creator-printing.cpp index 0a6b3a7134..5e078d5b71 100644 --- a/tests/unit/unittest/gtest-creator-printing.cpp +++ b/tests/unit/unittest/gtest-creator-printing.cpp @@ -149,17 +149,17 @@ std::ostream &operator<<(std::ostream &out, const LineColumn &lineColumn) void PrintTo(Utils::SmallStringView text, ::std::ostream *os) { - *os << text; + *os << "\"" << text << "\""; } void PrintTo(const Utils::SmallString &text, ::std::ostream *os) { - *os << text; + *os << "\"" << text << "\""; } void PrintTo(const Utils::PathString &text, ::std::ostream *os) { - *os << text; + *os << "\"" << text << "\""; } } // namespace Utils |