From 3a80fd6b55d4e697bcacf5c92fca487de13c325f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 22 May 2011 02:05:15 -0700 Subject: [PATCH] ambiguous_merge_order: set match = False more --- pym/portage/tests/resolver/ResolverPlayground.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pym/portage/tests/resolver/ResolverPlayground.py b/pym/portage/tests/resolver/ResolverPlayground.py index ff502778b..4a04dc0e1 100644 --- a/pym/portage/tests/resolver/ResolverPlayground.py +++ b/pym/portage/tests/resolver/ResolverPlayground.py @@ -541,12 +541,14 @@ class ResolverPlaygroundTestCase(object): if got_token == expected_obj: continue # result doesn't match, so stop early + match = False break expected_obj = set(expected_obj) try: expected_obj.remove(got_token) except KeyError: # result doesn't match, so stop early + match = False break new_expected.append(got_token) while got_stack and expected_obj: -- 2.26.2