Skip to content

Commit

Permalink
fix sample_data.csv path for broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaykarle committed May 31, 2024
1 parent e79506d commit ba7c2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/analyzer_engine/csv_analyzer_engine_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_csv_analyzer_engine_anonymizer():
nlp_engine = FlairNLPEngine("flair/ner-english-large")
csv_analyzer = CSVAnalyzerEngine(nlp_engine)
from presidio_anonymizer import BatchAnonymizerEngine
analyzer_results = csv_analyzer.analyze_csv('../sample_data/sample_data.csv', language="en")
analyzer_results = csv_analyzer.analyze_csv('./tests/sample_data/sample_data.csv', language="en")

anonymizer = BatchAnonymizerEngine()
anonymized_results = anonymizer.anonymize_dict(analyzer_results)
Expand Down

0 comments on commit ba7c2b2

Please sign in to comment.