"platforms/cuda/tests/TestCudaFFT3D.cpp" did not exist on "c08d8a5316dc85b5ca5fabe2a4dc14dfd9ba8895"
Commit 1289d16d authored by John Chodera (MSKCC)'s avatar John Chodera (MSKCC)
Browse files

Fix typo in Python test

parent 9639837c
...@@ -51,7 +51,7 @@ class TestPickle(unittest.TestCase): ...@@ -51,7 +51,7 @@ class TestPickle(unittest.TestCase):
"""Test that deep copying of forces works correctly.""" """Test that deep copying of forces works correctly."""
force = NonbondedForce() force = NonbondedForce()
force_copy = copy.deepcopy(force) force_copy = copy.deepcopy(force)
self.assertIsEqual(force.__class__.__name__, 'NonbondedForce') self.assertEqual(force.__class__.__name__, 'NonbondedForce')
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment