From d2749a63bf88a5dd9adac1dce7cffea04bbc7a9f Mon Sep 17 00:00:00 2001 From: Peter Eastman Date: Thu, 13 Oct 2022 11:47:55 -0700 Subject: [PATCH] Fixed error in test case (#41) --- test/TestMLPotential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TestMLPotential.py b/test/TestMLPotential.py index 7d6027e..9a0f1eb 100644 --- a/test/TestMLPotential.py +++ b/test/TestMLPotential.py @@ -9,7 +9,7 @@ platform_ints = range(mm.Platform.getNumPlatforms()) -@pytest.mark.parametrize("implementation,platform_name", list(itertools.product(['nnpops', 'torchani'], list(platform_ints)))) +@pytest.mark.parametrize("implementation,platform_int", list(itertools.product(['nnpops', 'torchani'], list(platform_ints)))) class TestMLPotential: def testCreateMixedSystem(self, implementation, platform_int):