tests: actually test printing of paths in unit test

This seems to be a copypasta mistake that slipped through when writing the
initial tests.  Changes the ValuePrintingTests::tPath to actually test a path
value instead of a string.

Change-Id: I20fe72635a0b1a6a0d72f674a4619da0de9f3d44
This commit is contained in:
FireFly
2025-04-05 17:11:17 +02:00
parent b7474fc4a9
commit c292fbc46d
+2 -2
View File
@@ -42,8 +42,8 @@ TEST_F(ValuePrintingTests, tString)
TEST_F(ValuePrintingTests, tPath)
{
Value vPath;
vPath.mkString("/foo");
test(vPath, "\"/foo\"");
vPath.mkPath("/foo");
test(vPath, "/foo");
}
TEST_F(ValuePrintingTests, tNull)