@@ -10,7 +10,7 @@ export class AssignmentTests {
1010 @TestCase ( "[1,2,3]" , "{1,2,3}" )
1111 @TestCase ( "true" , "true" )
1212 @TestCase ( "false" , "false" )
13- @TestCase ( `{a:3,b:"4"}` , `{a= 3,b= "4"}` )
13+ @TestCase ( `{a:3,b:"4"}` , `{a = 3,b = "4"}` )
1414 @Test ( "Const assignment" )
1515 public constAssignment ( inp : string , out : string ) {
1616 var lua = util . transpileString ( `const myvar = ${ inp } ;` )
@@ -22,7 +22,7 @@ export class AssignmentTests {
2222 @TestCase ( "[1,2,3]" , "{1,2,3}" )
2323 @TestCase ( "true" , "true" )
2424 @TestCase ( "false" , "false" )
25- @TestCase ( `{a:3,b:"4"}` , `{a= 3,b= "4"}` )
25+ @TestCase ( `{a:3,b:"4"}` , `{a = 3,b = "4"}` )
2626 @Test ( "Const assignment" )
2727 public letAssignment ( inp : string , out : string ) {
2828 var lua = util . transpileString ( `let myvar = ${ inp } ;` )
@@ -34,7 +34,7 @@ export class AssignmentTests {
3434 @TestCase ( "[1,2,3]" , "{1,2,3}" )
3535 @TestCase ( "true" , "true" )
3636 @TestCase ( "false" , "false" )
37- @TestCase ( `{a:3,b:"4"}` , `{a= 3,b= "4"}` )
37+ @TestCase ( `{a:3,b:"4"}` , `{a = 3,b = "4"}` )
3838 @Test ( "Const assignment" )
3939 public varAssignment ( inp : string , out : string ) {
4040 var lua = util . transpileString ( `var myvar = ${ inp } ;` )
0 commit comments