diff options
| author | Quentin Pradet <quentin.pradet@gmail.com> | 2019-11-03 10:16:22 +0400 |
|---|---|---|
| committer | Seth Michael Larson <sethmichaellarson@gmail.com> | 2019-11-04 13:01:15 -0600 |
| commit | efe8230d0cb21e7916e7b9fbb7d1e3cd419f9cbc (patch) | |
| tree | 60580cc517852094cceac1d0c0b792fbdce1b602 /test/conftest.py | |
| parent | 62d9df906437b558f72ca0d4799bc374a284186b (diff) | |
| download | urllib3-efe8230d0cb21e7916e7b9fbb7d1e3cd419f9cbc.tar.gz | |
Use shorter name for generated certs dir
Diffstat (limited to 'test/conftest.py')
| -rw-r--r-- | test/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/conftest.py b/test/conftest.py index 25059a7f..29219ac3 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -11,7 +11,7 @@ from dummyserver.server import ( @pytest.fixture(scope="session") -def generated_certs(tmp_path_factory): +def certs_dir(tmp_path_factory): tmpdir = tmp_path_factory.mktemp("certs") # Start from existing root CA as we don't want to change the server certificate yet with open(DEFAULT_CA, "rb") as crt, open(DEFAULT_CA_KEY, "rb") as key: |
