Skip to content
Snippets Groups Projects
Unverified Commit fde33553 authored by James Briggs's avatar James Briggs
Browse files

lint

parent 8d201d51
No related branches found
No related tags found
No related merge requests found
......@@ -13,11 +13,7 @@ class TestBM25Encoder:
assert len(bm25_encoder.idx_mapping) != 0
def test_fit(self, bm25_encoder):
bm25_encoder.fit([
"some docs",
"and more docs",
"and even more docs"
])
bm25_encoder.fit(["some docs", "and more docs", "and even more docs"])
assert len(bm25_encoder.idx_mapping) != 0
def test_call_method(self, bm25_encoder):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment