pep8 updates of test file

This commit is contained in:
Andy Eschbacher 2016-10-18 11:50:59 -06:00
parent 5404589058
commit a370a2da52

View File

@ -14,15 +14,16 @@ import crankshaft.pysal_utils as pu
from crankshaft import random_seeds
import json
class KMeansTest(unittest.TestCase):
"""Testing class for Moran's I functions"""
def setUp(self):
plpy._reset()
self.cluster_data = json.loads(open(fixture_file('kmeans.json')).read())
self.cluster_data = json.loads(
open(fixture_file('kmeans.json')).read())
self.params = {"subquery": "select * from table",
"no_clusters": "10"
}
"no_clusters": "10"}
def test_kmeans(self):
data = self.cluster_data
@ -35,4 +36,3 @@ class KMeansTest(unittest.TestCase):
self.assertEqual(len(np.unique(labels)), 2)
self.assertEqual(len(c1), 20)
self.assertEqual(len(c2), 20)