Skip to content

Commit 742243f

Browse files
authored
Merge pull request #624 from python-gitlab/update/docker-image
Use the pythongitlab/test-python-gitlab docker image for tests
2 parents fcce7a3 + 2c6c929 commit 742243f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/build_test_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ cleanup() {
7777
}
7878

7979
try docker run --name gitlab-test --detach --publish 8080:80 \
80-
--publish 2222:22 gpocentek/test-python-gitlab:latest >/dev/null
80+
--publish 2222:22 pythongitlab/test-python-gitlab:latest >/dev/null
8181

8282
LOGIN='root'
8383
PASSWORD='5iveL!fe'

tools/python_test_v4.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
]
391391
}
392392
admin_project.commits.create(data)
393-
assert('---' in admin_project.commits.list()[0].diff()[0]['diff'])
393+
assert('@@' in admin_project.commits.list()[0].diff()[0]['diff'])
394394

395395
# commit status
396396
commit = admin_project.commits.list()[0]

0 commit comments

Comments
 (0)