From 3b47a15ebd68211a832e485dab1e429394b3b372 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sat, 10 Sep 2016 21:12:09 -0700 Subject: [PATCH] Fix naming in tests. (#424) --- test/runtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtest.py b/test/runtest.py index 1a40b6abd..d12415bc5 100644 --- a/test/runtest.py +++ b/test/runtest.py @@ -616,7 +616,7 @@ class PythonCExtensionTest(unittest.TestCase): ray.worker.cleanup() - def testReferenceCountNone(self): + def testReferenceCountTrue(self): ray.init(start_ray_local=True, num_workers=1) # Make sure that we aren't accidentally messing up Python's reference counts. @@ -629,7 +629,7 @@ class PythonCExtensionTest(unittest.TestCase): ray.worker.cleanup() - def testReferenceCountNone(self): + def testReferenceCountFalse(self): ray.init(start_ray_local=True, num_workers=1) # Make sure that we aren't accidentally messing up Python's reference counts.