From cf9720e00d73263458ed62881fab0e0c45b6995f Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Tue, 30 Apr 2024 11:59:51 -0700 Subject: [PATCH] remove useless check Signed-off-by: Todd Gamblin --- lib/spack/spack/test/util/package_hash.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/spack/spack/test/util/package_hash.py b/lib/spack/spack/test/util/package_hash.py index 1838c6e1ccb..fa1a3c03fa2 100644 --- a/lib/spack/spack/test/util/package_hash.py +++ b/lib/spack/spack/test/util/package_hash.py @@ -148,8 +148,6 @@ def test_package_hash_all_same_but_archive_hash(mock_packages, config): # the sources for these two packages will not be the same b/c their archive hashes differ assert spec1.to_node_dict()["sources"] != spec2.to_node_dict()["sources"] - assert spec1.dag_hash() != spec2.dag_hash() - def test_package_hash_all_same_but_resources(mock_packages, config): spec1 = Spec("hash-test1@1.7").concretized()