diff options
author | 2011-04-04 09:23:47 +0100 | |
---|---|---|
committer | 2011-04-04 09:23:47 +0100 | |
commit | 83be9aeb5b6ce424eda8f901c3418e0db2cbac95 (patch) | |
tree | 426b591aea646580b87995ce26659508eef5dea5 /python | |
parent | 658a603da143398c3fbf3db3d335ffc92bb7cbb5 (diff) | |
download | paludis-83be9aeb5b6ce424eda8f901c3418e0db2cbac95.tar.gz paludis-83be9aeb5b6ce424eda8f901c3418e0db2cbac95.tar.xz |
Betterer names
Diffstat (limited to 'python')
-rw-r--r-- | python/generator_TEST.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/generator_TEST.py b/python/generator_TEST.py index 4d8b0deed..c1b690c5a 100644 --- a/python/generator_TEST.py +++ b/python/generator_TEST.py @@ -2,7 +2,7 @@ # vim: set fileencoding=utf-8 sw=4 sts=4 et : # -# Copyright (c) 2008 Ciaran McCreesh +# Copyright (c) 2008, 2011 Ciaran McCreesh # # This file is part of the Paludis package manager. Paludis is free software; # you can redistribute it and/or modify it under the terms of the GNU General @@ -35,8 +35,8 @@ class TestCase_01_Generator(unittest.TestCase): self.assertEquals(str(Generator.Matches(parse_user_package_dep_spec("foo/bar", env, []), MatchPackageOptions())), "packages matching foo/bar") self.assertEquals(str(Generator.Matches(parse_user_package_dep_spec("foo/bar", - env, []), [MatchPackageOption.IGNORE_ADDITIONAL_REQUIREMENTS])), - "packages matching foo/bar (ignoring additional requirements)") + env, []), [MatchPackageOption.IGNORE_CHOICE_CONSTRAINTS])), + "packages matching foo/bar (ignoring choice constraints)") if __name__ == "__main__": |