Skip to content

Commit fbc904f

Browse files
committed
Disable tests for disabled optimizations
1 parent 717b0db commit fbc904f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,13 @@ def fn(_src, _dst):
416416
self.assertEqual(res, _dst)
417417

418418
fn({'foo': [1, 2, 3]}, {'foo': [3, 1, 2]})
419-
fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]})
420419
fn([1, 2, 3], [3, 1, 2])
421-
fn([1, 2, 3], [3, 2, 1])
420+
421+
# Optimizations for the following tests are currently not performed.
422+
# The tests are disabled, as the missing optimizations do not
423+
# invalidate the results
424+
#fn({'foo': [1, 2, 3]}, {'foo': [3, 2, 1]})
425+
#fn([1, 2, 3], [3, 2, 1])
422426

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

0 commit comments

Comments
 (0)