From 4c2dae308aac0ee06789b05c6c69b288dee09f0a Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Thu, 27 Mar 2025 10:00:47 +0100 Subject: [PATCH] Fix typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/spack/spack/test/cc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/spack/test/cc.py b/lib/spack/spack/test/cc.py index aaae00ab9f0..016227f7509 100644 --- a/lib/spack/spack/test/cc.py +++ b/lib/spack/spack/test/cc.py @@ -754,7 +754,7 @@ def test_system_path_cleanup(wrapper_environment, wrapper_dir): def test_language_from_flags(wrapper_environment, wrapper_dir): - """Tes that the compiler language mode is determined by -x/--language flags if present""" + """Test that the compiler language mode is determined by -x/--language flags if present""" cc = wrapper_dir / "cc" for flag_value, lang in [("c", "CC"), ("c++", "CXX"), ("f77", "F77"), ("f95", "FC")]: