update tests for changed argument names

This commit is contained in:
Axel Kohlmeyer
2025-06-18 07:03:26 -04:00
parent 6934932383
commit 004816a4ba
3 changed files with 10 additions and 11 deletions

View File

@ -53,7 +53,7 @@ class PythonPyLammps(unittest.TestCase):
types = [1, 1]
self.assertEqual(self.pylmp.lmp.create_atoms(2, id=None, type=types, x=x), 2)
self.assertEqual(self.pylmp.lmp.create_atoms(2, atomid=None, atype=types, x=x), 2)
self.assertEqual(self.pylmp.system.natoms, 2)
self.assertEqual(len(self.pylmp.atoms), 2)
numpy.testing.assert_array_equal(self.pylmp.atoms[0].position, tuple(x[0:3]))