diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-05-13 18:36:30 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-05-13 18:36:30 +0200 |
commit | 24c283f5861f21e51489afc815bd9f31bff58bee (patch) | |
tree | 00bddcdb84fa14564400065a3862fd7fe6a2b062 /tools/python_test.py | |
parent | 45adb6e4dbe7667376639d68078754d6d72cb55c (diff) | |
download | gitlab-24c283f5861f21e51489afc815bd9f31bff58bee.tar.gz |
Deprecate Project.archive()
Diffstat (limited to 'tools/python_test.py')
-rw-r--r-- | tools/python_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python_test.py b/tools/python_test.py index df8de23..d071435 100644 --- a/tools/python_test.py +++ b/tools/python_test.py @@ -152,8 +152,8 @@ assert(len(tree) == 1) assert(tree[0]['name'] == 'README.rst') blob = admin_project.repository_blob('master', 'README.rst') assert(blob == 'Initial content') -archive1 = admin_project.archive() -archive2 = admin_project.archive('master') +archive1 = admin_project.repository_archive() +archive2 = admin_project.repository_archive('master') assert(archive1 == archive2) # labels |