From cae15607086ba8da792df75efa2d9212ab385d0c Mon Sep 17 00:00:00 2001
From: utkarshgautamnyu <utkarsh.gautam@nyu.edu>
Date: Thu, 28 Sep 2017 13:25:08 -0700
Subject: [PATCH] Update JSBakerTest.cpp

---
 tests/baking/src/JSBakerTest.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/tests/baking/src/JSBakerTest.cpp b/tests/baking/src/JSBakerTest.cpp
index 0e6f0cb516..412d91a3e6 100644
--- a/tests/baking/src/JSBakerTest.cpp
+++ b/tests/baking/src/JSBakerTest.cpp
@@ -71,9 +71,6 @@ void JSBakerTest::setTestCases() {
 
     //No semicolon to terminate an expression, instead a new line used for termination
     _testCases.emplace_back("var x=5\nvar y=6;", "var x=5\nvar y=6;");
-
-    //a + ++b is minified as a+++b, interpreted as a++ + b. Ensure original script has correct parantheses
-    _testCases.emplace_back("a + ++b", "a+++b");
 }
 
 void JSBakerTest::testJSBaking() {