fix strings in test, make more methods private

This commit is contained in:
pantor
2020-07-15 20:51:00 +02:00
parent 5938bc2301
commit f4731061db
7 changed files with 39 additions and 33 deletions

View File

@@ -5,13 +5,13 @@
TEST_CASE("source location") {
std::string content = R"DELIM(Lorem Ipsum
std::string content = R""""(Lorem Ipsum
Dolor
Amid
Set ().$
Try this
)DELIM";
)"""";
CHECK(inja::get_source_location(content, 0).line == 1);
CHECK(inja::get_source_location(content, 0).column == 1);