From 45ae34c5f31eca1258f6df278c9862ff829f39db Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 8 Jan 2022 19:39:27 +0800 Subject: ... --- test/toml/ParserTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/toml/ParserTest.cpp b/test/toml/ParserTest.cpp index 5bbb5fe7..426eb54c 100644 --- a/test/toml/ParserTest.cpp +++ b/test/toml/ParserTest.cpp @@ -9,17 +9,17 @@ TEST(CruTomlParserTest, Simple) { TomlParser parser( uR"( a1 = v1 -"a2" = "v2" +a2 = v2 # comment [s1] # comment a3 = v3 -"a4" = "v4" +a4 = v4 [s2] a5 = v5 -"a6" = "v6" +a6 = v6 )"); auto document = parser.Parse(); ASSERT_EQ(document.GetSection(u"")->GetValue(u"a1"), u"v1"); -- cgit v1.2.3