From bc30665689c651d2bdb3e981e22e6151e645bcca Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 3 Jan 2025 04:04:42 -0500 Subject: [PATCH] update unit test for changes in units command error messages --- unittest/commands/test_simple_commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/commands/test_simple_commands.cpp b/unittest/commands/test_simple_commands.cpp index d3fef447ac..7e52d24eca 100644 --- a/unittest/commands/test_simple_commands.cpp +++ b/unittest/commands/test_simple_commands.cpp @@ -405,7 +405,7 @@ TEST_F(SimpleCommandsTest, Units) END_HIDE_OUTPUT(); ASSERT_THAT(lmp->update->unit_style, StrEq("lj")); - TEST_FAILURE(".*ERROR: Illegal units command.*", command("units unknown");); + TEST_FAILURE(".*ERROR: Unknown units style unknown.*", command("units unknown");); } #if defined(LMP_PLUGIN)