From f9352e6ad7ecf7076d41c4b452fbb59ea54e53ba Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 11 Aug 2022 03:56:29 -0400 Subject: [PATCH] update unit test for groups --- unittest/commands/test_groups.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unittest/commands/test_groups.cpp b/unittest/commands/test_groups.cpp index b0706ea775..a5c1a50f41 100644 --- a/unittest/commands/test_groups.cpp +++ b/unittest/commands/test_groups.cpp @@ -122,13 +122,13 @@ TEST_F(GroupTest, EmptyDelete) TEST_FAILURE(".*ERROR: Illegal group command.*", command("group new2 delete xxx");); TEST_FAILURE(".*ERROR: Cannot delete group all.*", command("group all delete");); TEST_FAILURE(".*ERROR: Could not find group delete.*", command("group new0 delete");); - TEST_FAILURE(".*ERROR: Cannot delete group currently used by a fix.*", + TEST_FAILURE(".*ERROR: Cannot delete group new2 currently used by fix.*", command("group new2 delete");); - TEST_FAILURE(".*ERROR: Cannot delete group currently used by a compute.*", + TEST_FAILURE(".*ERROR: Cannot delete group new3 currently used by compute.*", command("group new3 delete");); - TEST_FAILURE(".*ERROR: Cannot delete group currently used by a dump.*", + TEST_FAILURE(".*ERROR: Cannot delete group new4 currently used by dump.*", command("group new4 delete");); - TEST_FAILURE(".*ERROR: Cannot delete group currently used by atom_modify.*", + TEST_FAILURE(".*ERROR: Cannot delete group new5 currently used by atom_modify.*", command("group new5 delete");); }