remove intentional false positive

This commit is contained in:
Axel Kohlmeyer 2022-10-03 23:51:21 -04:00
parent 4e9b97d5cb
commit d7d2802061
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 1 deletions

View File

@ -133,6 +133,6 @@ TEST_F(LAMMPS_properties, has_error)
char errmsg[1024];
int err = f_lammps_get_last_error_message(errmsg, 1023);
EXPECT_EQ(err, 1);
EXPECT_THAT(errmsg, ContainsRegex(".*ERRORx: Unknown command: this_is_not_a_known_command.*"));
EXPECT_THAT(errmsg, ContainsRegex(".*ERROR: Unknown command: this_is_not_a_known_command.*"));
};
} // namespace LAMMPS_NS