diff options
-rw-r--r-- | tests/test_PristineTar.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_PristineTar.py b/tests/test_PristineTar.py index cfe51de7..f7eb5881 100644 --- a/tests/test_PristineTar.py +++ b/tests/test_PristineTar.py @@ -71,7 +71,8 @@ def test_create_tarball(): >>> import gbp.deb.git >>> repo = gbp.deb.git.DebianGitRepository(repo_dir) - >>> repo.archive('tar.gz', 'upstream/', '../upstream_1.0.orig.tar.gz', 'upstream') + >>> repo.archive('tar', 'upstream/', '../upstream_1.0.orig.tar', 'upstream') + >>> gbp.command_wrappers.Command('gzip', [ '-n', '%s/../upstream_1.0.orig.tar' % repo_dir])() """ def test_pristine_tar_commit(): |