diff options
Diffstat (limited to 'lib/spack/spack/test/spec_syntax.py')
-rw-r--r-- | lib/spack/spack/test/spec_syntax.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/spack/spack/test/spec_syntax.py b/lib/spack/spack/test/spec_syntax.py index 52a842912e..b0de1b3e69 100644 --- a/lib/spack/spack/test/spec_syntax.py +++ b/lib/spack/spack/test/spec_syntax.py @@ -351,11 +351,12 @@ class TestSpecSyntax(object): @pytest.mark.db def test_ambiguous_hash(self, mutable_database): x1 = Spec('a') + x1.concretize() x1._hash = 'xy' - x1._concrete = True x2 = Spec('a') + x2.concretize() x2._hash = 'xx' - x2._concrete = True + mutable_database.add(x1, spack.store.layout) mutable_database.add(x2, spack.store.layout) |