Fix Tree String tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-09-22 17:41:18 +02:00
parent 30d82085cc
commit 326a3c097a
2 changed files with 13 additions and 13 deletions

View File

@@ -10,9 +10,9 @@ TEST_CASE( "Basic script to bound tree string", "[integration]" ) {
auto boundTreeString = script->GetTreeString();
REQUIRE(boundTreeString == "BlockStatement\n"
"\tReturnStatement\n"
"\t\tBinaryExpression: addition (number)\n"
"\t\t\tLiteralInteger: 10 (number)\n"
"\t\t\tLiteralInteger: 500 (number)");
"\t\tBinaryExpression: addition (numeric (Known integer))\n"
"\t\t\tLiteralInteger: 10 (numeric (Known integer))\n"
"\t\t\tLiteralInteger: 500 (numeric (Known integer))");
delete script;
}