From e6c236d7162754a3d47f7ba40e6ae4da147dab84 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 9 Mar 2022 13:44:31 +0100 Subject: [PATCH] Rename test repo to `tljh-repo2docker-test-binder` --- tljh_repo2docker/tests/conftest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tljh_repo2docker/tests/conftest.py b/tljh_repo2docker/tests/conftest.py index 3e4c77a..1155930 100644 --- a/tljh_repo2docker/tests/conftest.py +++ b/tljh_repo2docker/tests/conftest.py @@ -32,17 +32,17 @@ async def remove_docker_image(image_name): @pytest.fixture(scope='module') def minimal_repo(): - return "https://github.com/plasmabio/test-binder" + return "https://github.com/plasmabio/tljh-repo2docker-test-binder" @pytest.fixture(scope='module') def minimal_repo_uppercase(): - return "https://github.com/plasmabio/TEST-BINDER" + return "https://github.com/plasmabio/TLJH-REPO2DOCKER-TEST-BINDER" @pytest.fixture(scope='module') def generated_image_name(): - return "plasmabio-test-binder:HEAD" + return "plasmabio-tljh-repo2docker-test-binder:HEAD" @pytest.fixture(scope='module')