From a14b38ce21a905b7aea22b368d2bdccf92550b83 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 21 Oct 2020 22:23:45 -0400 Subject: [PATCH] avoid bell --- unittest/tools/test_lammps_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/tools/test_lammps_shell.py b/unittest/tools/test_lammps_shell.py index 56a4111234..afbbca033b 100644 --- a/unittest/tools/test_lammps_shell.py +++ b/unittest/tools/test_lammps_shell.py @@ -71,7 +71,7 @@ class LammpsShell(unittest.TestCase): def testExpandComputeGroup(self): """Test expansion of a group-ID and a compute command""" - matches = re.findall(cmd_group_re, self.InputRunner(b'compu\t test al\tcentro/at\t\n'), re.MULTILINE) + matches = re.findall(cmd_group_re, self.InputRunner(b'compute test al\tcentro/at\t\n'), re.MULTILINE) self.assertEqual(matches[0][1],"compute") self.assertEqual(matches[0][2],"test") self.assertEqual(matches[0][3],"all")