mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-14 03:05:39 +00:00
Fixes import path in test
This commit is contained in:
parent
628f104b13
commit
c3156a1de5
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class ImportViews(TestCase):
|
|||
form.data["source"] = "Goodreads"
|
||||
form.data["privacy"] = "public"
|
||||
form.data["include_reviews"] = False
|
||||
csv_file = pathlib.Path(__file__).parent.joinpath("../data/goodreads.csv")
|
||||
csv_file = pathlib.Path(__file__).parent.joinpath("../../data/goodreads.csv")
|
||||
form.data["csv_file"] = SimpleUploadedFile(
|
||||
# pylint: disable=consider-using-with
|
||||
csv_file,
|
||||
|
|
Loading…
Reference in a new issue