From eb08239e74d55cfd19652b3f26183b0b50243f8d Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Tue, 15 Dec 2020 16:58:57 +0200 Subject: [PATCH] Fix test for project-init --- neuro-cli/tests/unit/test_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuro-cli/tests/unit/test_project.py b/neuro-cli/tests/unit/test_project.py index ccace9b68..887dc081a 100644 --- a/neuro-cli/tests/unit/test_project.py +++ b/neuro-cli/tests/unit/test_project.py @@ -17,6 +17,6 @@ def test_project_init(tmp_path: Path, slug: Optional[str]) -> None: _project_init(slug, no_input=True) assert path.is_dir() - assert "Makefile" in {p.name for p in path.iterdir()} + assert "Dockerfile" in {p.name for p in path.iterdir()} finally: os.chdir(old_workdir)