Add spaces after commas in vector/rotation constructors

This commit is contained in:
Sei Lisa 2018-12-27 23:25:51 +01:00
parent 6f32b4710a
commit 3542824d51
2 changed files with 4 additions and 4 deletions

View file

@ -462,7 +462,7 @@ class Test03_Optimizer(UnitTestCase):
self.opt.optimize(p)
out = self.outscript.output(p)
self.assertEqual(out, 'key k = "blah";\nlist L = [k, "xxxx", 1.];\n'
'float f = 0;\ninteger i;\nvector v = <f,3,4>;\n\n'
'float f = 0;\ninteger i;\nvector v = <f, 3, 4>;\n\n'
'default\n{\n timer()\n {\n'
' f = 4;\n k = "";\n i = 0;\n'
' v = <((float)0), ((float)0), ((float)0)>;\n L = [];\n'