summaryrefslogtreecommitdiff
path: root/tests/13_test_gbp_pq.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/13_test_gbp_pq.py')
-rw-r--r--tests/13_test_gbp_pq.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/13_test_gbp_pq.py b/tests/13_test_gbp_pq.py
index 57ce83b..dfcf87a 100644
--- a/tests/13_test_gbp_pq.py
+++ b/tests/13_test_gbp_pq.py
@@ -91,7 +91,8 @@ class TestApplySinglePatch(testutils.DebianGitTestRepo):
patch = gbp.patch_series.Patch(_patch_path('foo.patch'))
- pq.apply_single_patch(self.repo, 'master', patch, None)
+ dummy_opts = object()
+ pq.apply_single_patch(self.repo, 'master', patch, None, dummy_opts)
self.assertIn('foo', self.repo.list_files())
class TestWritePatch(testutils.DebianGitTestRepo):
@@ -146,7 +147,7 @@ class TestExport(testutils.DebianGitTestRepo):
repo = self.repo
start = repo.get_branch()
pq_branch = os.path.join('patch-queue', start)
- pq.switch_pq(repo, start)
+ pq.switch_pq(repo, start, TestExport.Options)
self.assertEqual(repo.get_branch(), pq_branch)
export_patches(repo, pq_branch, TestExport.Options)
self.assertEqual(repo.get_branch(), start)