diff options
author | BonfaceKilz | 2021-03-23 01:12:04 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-23 01:14:37 +0300 |
commit | 5151987063eab58b10a2dd8e831ec036df217531 (patch) | |
tree | 96bd672a23efc59de72c46124abc286f20921ba4 /tests | |
parent | a35933013cede542d03d678b6e4a92f4e8f2cf40 (diff) | |
download | genenetwork3-5151987063eab58b10a2dd8e831ec036df217531.tar.gz |
Convert Path object to a str
* gn3/file_utils.py (cache_ipfs_file): Return a str instead of a path object.
* tests/unit/test_file_utils.py: Update failing tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/test_file_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_file_utils.py b/tests/unit/test_file_utils.py index abe7aa6..219db0e 100644 --- a/tests/unit/test_file_utils.py +++ b/tests/unit/test_file_utils.py @@ -116,5 +116,5 @@ extracting the file""" "QmQPeNsJPyVWPFDVHb" "77w8G42Fvo15z4bG2X8D2GhfbSXc-test/" "genotype.txt"), - target=f"{test_dir}/genotype.txt" + target=f"{test_dir}" ) |