Skip to content

Commit

Permalink
renamed example_distances.csv to tsv
Browse files Browse the repository at this point in the history
  • Loading branch information
felixsafegraph authored Nov 14, 2020
1 parent 000ad26 commit 785fdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion placekey/tests/test_placekey.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def parse_distances(line):
'distance': float(tokens[4]),
}

with open('placekey/tests/example_distances.csv') as f:
with open('placekey/tests/example_distances.tsv') as f:
next(f) # skip header
self.distance_samples = [parse_distances(l.strip())
for l in f.readlines()]
Expand Down

0 comments on commit 785fdb0

Please sign in to comment.