Skip to content

Commit 2f45e50

Browse files
committed
Re-enable previously disabled optimization tests
1 parent 82ac779 commit 2f45e50

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -425,12 +425,8 @@ def fn(_src, _dst):
425425

426426
fn({'foo': [1, 2, 3]}, {'foo': [3, 1, 2]})
427427
fn([1, 2, 3], [3, 1, 2])
428-
429-
# Optimizations for the following tests are currently not performed.
430-
# The tests are disabled, as the missing optimizations do not
431-
# invalidate the results
432-
#fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]})
433-
#fn([1, 2, 3], [3, 2, 1])
428+
fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]})
429+
fn([1, 2, 3], [3, 2, 1])
434430

435431
def test_success_if_replace_inside_dict(self):
436432
src = [{'a': 1, 'foo': {'b': 2, 'd': 5}}]

0 commit comments

Comments
 (0)