Skip to content

Commit 8c0e8cd

Browse files
committed
Bug 1396782 - Unskip the nested SelectExpression test
1 parent d101939 commit 8c0e8cd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/syntax/test_serializer.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -299,13 +299,12 @@ def test_select_expression_in_multi_multiline(self):
299299
"""
300300
self.assertEqual(pretty_ftl(input), dedent_ftl(input))
301301

302-
@unittest.skip("Parsing error")
303302
def test_select_expression_nested(self):
304303
input = """\
305304
foo = { sel_a ->
306305
*[a] { sel_b ->
307-
*[b] Foo
308-
}
306+
*[b] Foo
307+
}
309308
}
310309
"""
311310
self.assertEqual(pretty_ftl(input), dedent_ftl(input))

0 commit comments

Comments
 (0)