diff options
| author | Max Wittig <max.wittig95@gmail.com> | 2020-03-08 11:44:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-08 11:44:53 +0100 |
| commit | ca37d23fd3d5a9ab19f5aeb2000ac32c503caeb1 (patch) | |
| tree | e4aa72b0438047cadb4b66a7ad5945c2083d0f71 /tools/python_test_v4.py | |
| parent | e5afb554bf4bcc28555bde4030f50558f175a53b (diff) | |
| parent | 99d959f74d06cca8df3f2d2b3a4709faba7799cb (diff) | |
| download | gitlab-ca37d23fd3d5a9ab19f5aeb2000ac32c503caeb1.tar.gz | |
Merge pull request #1038 from nejch/fix/allow-empty-create-data
Fix: do not require empty data dict for create()
Diffstat (limited to 'tools/python_test_v4.py')
| -rw-r--r-- | tools/python_test_v4.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index 0703ee3..90aa7f1 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -949,7 +949,7 @@ settings.save() [current_project.delete() for current_project in projects] # project import/export -ex = admin_project.exports.create({}) +ex = admin_project.exports.create() ex.refresh() count = 0 while ex.export_status != "finished": |
