Skip to content

Commit c9b283f

Browse files
committed
Unsplit the string literal so the sv literal works properly
1 parent f09c4f7 commit c9b283f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/PegtlExecutableTests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ TEST(PegtlExecutableCase, InvalidStringEscapeSequence)
156156
using namespace std::literals;
157157

158158
ASSERT_NE(nullptr, e.what());
159-
EXPECT_TRUE("InvalidStringEscapeSequence:1:31: parse error matching struct "
160-
"graphql::peg::string_escape_sequence_content"sv
159+
EXPECT_TRUE(
160+
"InvalidStringEscapeSequence:1:31: parse error matching struct graphql::peg::string_escape_sequence_content"sv
161161
== e.what())
162162
<< e.what();
163163
caughtException = true;

0 commit comments

Comments
 (0)