fix string in test

Signed-off-by: Todd Gamblin <tgamblin@llnl.gov>
This commit is contained in:
Todd Gamblin 2024-08-12 15:51:51 -07:00
parent 97f868a54e
commit 74684ea089
No known key found for this signature in database
GPG Key ID: C16729F1AACF66C6

View File

@ -410,7 +410,7 @@ def test_nosource_pkg_install(install_mockery, mock_fetch, mock_packages, capfd,
assert "Installing dependency-install" in out[0]
# Make sure a warning for missing code is issued
assert "Missing a source id for nosource" in out[1]
assert "Missing a hash for nosource" in out[1]
@pytest.mark.disable_clean_stage_check
@ -427,7 +427,7 @@ def test_nosource_bundle_pkg_install(
assert "Installing dependency-install" in out[0]
# Make sure a warning for missing code is *not* issued
assert "Missing a source id for nosource" not in out[1]
assert "Missing a hash for nosource" not in out[1]
def test_nosource_pkg_install_post_install(install_mockery, mock_fetch, mock_packages):