tests/emerge: remove unneeded default_args
authorZac Medico <zmedico@gentoo.org>
Tue, 30 Aug 2011 20:46:55 +0000 (13:46 -0700)
committerZac Medico <zmedico@gentoo.org>
Tue, 30 Aug 2011 20:46:55 +0000 (13:46 -0700)
pym/portage/tests/emerge/test_simple.py

index b698fcaa23a6f77a0a811809fc2ba85768b6902b..f6f5ab06ef06b2d67dcea86c79fc4711604f92e6 100644 (file)
@@ -51,7 +51,6 @@ class SimpleEmergeTestCase(TestCase):
                        },
                }
 
-               default_args = ("--package-moves=n",)
                test_args = (
                        ("--version",),
                        ("--info",),
@@ -130,8 +129,7 @@ class SimpleEmergeTestCase(TestCase):
                                f.write("*dev-libs/token-system-pkg")
                        for args in test_args:
                                proc = subprocess.Popen([portage._python_interpreter, "-Wd",
-                                       os.path.join(PORTAGE_BIN_PATH, "emerge")] + \
-                                       list(default_args) + list(args),
+                                       os.path.join(PORTAGE_BIN_PATH, "emerge")] + list(args),
                                        env=env, stdout=subprocess.PIPE)
                                output = proc.stdout.readlines()
                                proc.wait()