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)