From 2f45e50b8a3139e56e359d6b8d56227c5680ca8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Sun, 10 Sep 2017 16:07:14 +0200 Subject: Re-enable previously disabled optimization tests --- tests.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests.py b/tests.py index 39f3a85..7931fec 100755 --- a/tests.py +++ b/tests.py @@ -425,12 +425,8 @@ class OptimizationTests(unittest.TestCase): fn({'foo': [1, 2, 3]}, {'foo': [3, 1, 2]}) fn([1, 2, 3], [3, 1, 2]) - - # Optimizations for the following tests are currently not performed. - # The tests are disabled, as the missing optimizations do not - # invalidate the results - #fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]}) - #fn([1, 2, 3], [3, 2, 1]) + fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]}) + fn([1, 2, 3], [3, 2, 1]) def test_success_if_replace_inside_dict(self): src = [{'a': 1, 'foo': {'b': 2, 'd': 5}}] -- cgit v1.2.1