fix up kim unit tests broken by recent changes

This commit is contained in:
Axel Kohlmeyer
2022-12-09 19:56:45 -05:00
parent 34f44daef5
commit 07bb7b3195
2 changed files with 8 additions and 8 deletions

View File

@ -307,17 +307,17 @@ TEST_F(KimCommandsTest, kim_param)
ASSERT_THAT(variable->retrieve("shift"), StrEq("2"));
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'list' in 'kim param get'.*",
command("kim param get cutoffs 1:3 list"););
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'list' in 'kim param get'.*",
command("kim param get cutoffs 1:3 cutoffs_1 cutoffs_2 list"););
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'split' in 'kim param get'.*",
command("kim param get cutoffs 1:3 split"););
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'split' in 'kim param get'.*",
command("kim param get cutoffs 1:3 cutoffs_1 cutoffs_2 split"););
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'explicit' in 'kim param get'.*",
command("kim param get cutoffs 1:3 explicit"););
TEST_FAILURE(".*ERROR: Illegal variable name in 'kim param get'.*",
TEST_FAILURE(".*ERROR: Illegal variable name 'explicit' in 'kim param get'.*",
command("kim param get cutoffs 1:3 cutoffs_1 cutoffs_2 explicit"););
TEST_FAILURE(".*ERROR: Wrong number of arguments in 'kim param get' "
"command.\nThe LAMMPS '3' variable names or 'cutoffs "