Skip to content

Commit

Permalink
test: fix incorrect test name
Browse files Browse the repository at this point in the history
The test name was incorrect as the test is testing a type vectorizer,
not column vectorizer.
  • Loading branch information
jpvanhal committed Feb 19, 2024
1 parent 317a89f commit 8316904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_vectorizers.py
Expand Up @@ -32,7 +32,7 @@ def hstore_vectorizer(column):

return Article

def test_uses_column_vectorizer(self, Article, session):
def test_uses_type_vectorizer(self, Article, session):
article = Article(name={"fi": "Joku artikkeli", "en": "Some article"})
session.add(article)
session.commit()
Expand Down

0 comments on commit 8316904

Please sign in to comment.