From aa25fb9412f521a71393035e6704b6241784165d Mon Sep 17 00:00:00 2001 From: psakiev Date: Thu, 30 May 2024 08:15:36 -0600 Subject: [PATCH] Style --- lib/spack/spack/test/concretize.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/spack/spack/test/concretize.py b/lib/spack/spack/test/concretize.py index f96f5d09e3a..dd4957b9870 100644 --- a/lib/spack/spack/test/concretize.py +++ b/lib/spack/spack/test/concretize.py @@ -2927,7 +2927,8 @@ def test_git_ref_version_can_be_reused( # reproducer of the issue is that spack will solve when there is a change to the base spec second_spec = spack.spec.Spec("git-ref-package@git.2.1.5=2.1.5+opt").concretized() assert second_spec.dag_hash() != first_spec.dag_hash() - # we also want to confirm that reuse actually works so leave variant off to let solver reuse + # we also want to confirm that reuse actually works so leave variant off to + # let solver reuse third_spec = spack.spec.Spec("git-ref-package@git.2.1.5=2.1.5") assert first_spec.satisfies(third_spec) third_spec.concretize()