From a7dfc9f036505ac3f958973fb1a4dc320c7f39ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Harasimowicz?= Date: Sat, 4 Mar 2017 23:33:16 +0100 Subject: [PATCH] Fixing tests --- tests/test_sample_projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sample_projects.py b/tests/test_sample_projects.py index 8d80316..95fe487 100644 --- a/tests/test_sample_projects.py +++ b/tests/test_sample_projects.py @@ -24,7 +24,7 @@ def test_envrc(cookies): extra_context = {'project_name': 'environ'} with temporary_project(cookies, extra_context=extra_context) as result: - envrc_file = result.project.join('.envrc') + envrc_file = result.project.join('environ', '.envrc') lines = [x.strip() for x in envrc_file.readlines(cr=False)] assert 'ENVIRON_SECRET_KEY' in lines assert 'ENVIRON_DATABASE_URL' in lines \ No newline at end of file