@@ -492,9 +492,9 @@ TEST(ExpressionTests, IsNotNullExprToString) {
492492
493493TEST (ExpressionTests, ComplexArithmeticExpression) {
494494 // (5 + 3) * 2 = 16
495- auto left = std::make_unique<BinaryExpr>(
496- std::make_unique<ConstantExpr>( Value::make_int64 ( 5 )), TokenType::Plus,
497- std::make_unique<ConstantExpr>(Value::make_int64 (3 )));
495+ auto left = std::make_unique<BinaryExpr>(std::make_unique<ConstantExpr>( Value::make_int64 ( 5 )),
496+ TokenType::Plus,
497+ std::make_unique<ConstantExpr>(Value::make_int64 (3 )));
498498 auto right = std::make_unique<ConstantExpr>(Value::make_int64 (2 ));
499499 BinaryExpr expr (std::move (left), TokenType::Star, std::move (right));
500500
@@ -504,9 +504,9 @@ TEST(ExpressionTests, ComplexArithmeticExpression) {
504504
505505TEST (ExpressionTests, ComplexLogicalExpression) {
506506 // (5 > 3) AND (2 < 10)
507- auto left = std::make_unique<BinaryExpr>(
508- std::make_unique<ConstantExpr>( Value::make_int64 ( 5 )), TokenType::Gt,
509- std::make_unique<ConstantExpr>(Value::make_int64 (3 )));
507+ auto left = std::make_unique<BinaryExpr>(std::make_unique<ConstantExpr>( Value::make_int64 ( 5 )),
508+ TokenType::Gt,
509+ std::make_unique<ConstantExpr>(Value::make_int64 (3 )));
510510 auto right = std::make_unique<BinaryExpr>(
511511 std::make_unique<ConstantExpr>(Value::make_int64 (2 )), TokenType::Lt,
512512 std::make_unique<ConstantExpr>(Value::make_int64 (10 )));
0 commit comments