From 3593a7be6a397601b8bc6be3a818d69b02d1ad83 Mon Sep 17 00:00:00 2001 From: Carson Woods Date: Fri, 20 Sep 2019 19:05:56 -0400 Subject: [PATCH] Better comment the purpose of new unit tests --- lib/spack/spack/test/cmd/uninstall.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/spack/spack/test/cmd/uninstall.py b/lib/spack/spack/test/cmd/uninstall.py index 550d23cc8bc..3cf27f406ef 100644 --- a/lib/spack/spack/test/cmd/uninstall.py +++ b/lib/spack/spack/test/cmd/uninstall.py @@ -82,7 +82,7 @@ def test_force_uninstall_spec_with_ref_count_not_zero( @pytest.mark.db @pytest.mark.usefixtures('mutable_database') def test_global_recursive_uninstall(): - """Test recursive uninstall.""" + """Test recursive uninstall from global upstream""" uninstall('-g', '-y', '-a', '--dependents', 'callpath') all_specs = spack.store.layout.all_specs() @@ -100,7 +100,7 @@ def test_global_recursive_uninstall(): @pytest.mark.db @pytest.mark.usefixtures('mutable_database') def test_upstream_recursive_uninstall(): - """Test recursive uninstall.""" + """Test recursive uninstall from specified upstream""" uninstall('--upstream=global', '-y', '-a', '--dependents', 'callpath') all_specs = spack.store.layout.all_specs()