From 008604178b061b4e285ad6b4cf97edfda8439185 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Fri, 31 Dec 2021 15:32:02 +0100 Subject: [PATCH] Update test binder repo to the new URL --- 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 45c5bc2..3e4c77a 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/jtpio/test-binder" + return "https://github.com/plasmabio/test-binder" @pytest.fixture(scope='module') def minimal_repo_uppercase(): - return "https://github.com/jtpio/TEST-BINDER" + return "https://github.com/plasmabio/TEST-BINDER" @pytest.fixture(scope='module') def generated_image_name(): - return "jtpio-test-binder:HEAD" + return "plasmabio-test-binder:HEAD" @pytest.fixture(scope='module')