diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-11-14 13:26:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 05:26:14 -0700 |
commit | e4e02dbeae332e1c742f14179cbf6dbe47c8316f (patch) | |
tree | 28a4cf91f0865e2c468862abf344673fd1e3ad9e | |
parent | 3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6 (diff) | |
download | spack-e4e02dbeae332e1c742f14179cbf6dbe47c8316f.tar.gz spack-e4e02dbeae332e1c742f14179cbf6dbe47c8316f.tar.bz2 spack-e4e02dbeae332e1c742f14179cbf6dbe47c8316f.tar.xz spack-e4e02dbeae332e1c742f14179cbf6dbe47c8316f.zip |
Fix a bug/typo in a config_values.py fixture (#33886)
-rw-r--r-- | lib/spack/spack/test/config_values.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/test/config_values.py b/lib/spack/spack/test/config_values.py index f631a4aa82..3e150931f1 100644 --- a/lib/spack/spack/test/config_values.py +++ b/lib/spack/spack/test/config_values.py @@ -28,7 +28,7 @@ def test_set_install_hash_length(hash_length, mutable_config, tmpdir): assert len(hash_str) == hash_length -@pytest.mark.use_fixtures("mock_packages") +@pytest.mark.usefixtures("mock_packages") def test_set_install_hash_length_upper_case(mutable_config, tmpdir): mutable_config.set("config:install_hash_length", 5) mutable_config.set( |