From 6ce5864bc9ec66c82886b0614631475e9a501762 Mon Sep 17 00:00:00 2001 From: searchivairus Date: Thu, 20 Jul 2017 15:56:30 -0400 Subject: [PATCH] fixing Python tests --- python_bindings/tests/bindings_test.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/python_bindings/tests/bindings_test.py b/python_bindings/tests/bindings_test.py index d35cd41..5fb88a4 100644 --- a/python_bindings/tests/bindings_test.py +++ b/python_bindings/tests/bindings_test.py @@ -74,11 +74,6 @@ def _get_index(self, space='cosinesimil'): return nmslib.init(method='hnsw', space=space) -class SWGraphSplitTestCase(unittest.TestCase, DenseIndexTestMixin): - def _get_index(self, space='cosinesimil'): - return nmslib.init(method='sw-graph-split', space=space) - - class SWGraphTestCase(unittest.TestCase, DenseIndexTestMixin): def _get_index(self, space='cosinesimil'): return nmslib.init(method='sw-graph', space=space)