From: Zac Medico Date: Wed, 18 Aug 2010 10:48:06 +0000 (-0700) Subject: Add opconvert test for "|| ( ( A B ) C )". X-Git-Tag: v2.2_rc68~113 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b4ee6695483ef8fe038d7d4fd63d4c1a78d5d70a;p=portage.git Add opconvert test for "|| ( ( A B ) C )". --- diff --git a/pym/portage/tests/dep/test_use_reduce.py b/pym/portage/tests/dep/test_use_reduce.py index 4cb778a5c..6d4438979 100644 --- a/pym/portage/tests/dep/test_use_reduce.py +++ b/pym/portage/tests/dep/test_use_reduce.py @@ -271,6 +271,10 @@ class UseReduce(TestCase): "|| ( A B )", opconvert = True, expected_result = [ ["||", "A", "B"] ]), + UseReduceTestCase( + "|| ( ( A B ) C )", + opconvert = True, + expected_result = [ [ "||", ["A", "B"], "C" ] ]), UseReduceTestCase( "|| ( A || ( B C ) )", opconvert = True,