diff options
author | BonfaceKilz | 2021-03-24 16:17:19 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-08 19:19:47 +0300 |
commit | c516eb05db17d75db9e202750989085cfdd1bd02 (patch) | |
tree | d291d2acc7b2ea574bbfdbb23432c629cc7cf47f /tests/unit/test_file_utils.py | |
parent | 49cb97f5ec2234c8981e107da31c8d79fc362a78 (diff) | |
download | genenetwork3-c516eb05db17d75db9e202750989085cfdd1bd02.tar.gz |
Add extra genotype test file
* tests/unit/test_data/genotype.txt: New file.
* tests/unit/test_file_utils.py: Update failing test.
Diffstat (limited to 'tests/unit/test_file_utils.py')
-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 219db0e..cc842d5 100644 --- a/tests/unit/test_file_utils.py +++ b/tests/unit/test_file_utils.py @@ -24,7 +24,7 @@ class TestFileUtils(unittest.TestCase): def test_get_dir_hash(self): """Test that a directory is hashed correctly""" test_dir = os.path.join(os.path.dirname(__file__), "test_data") - self.assertEqual("fd9d74a9554b7f13bfeffbdda8e61486", + self.assertEqual("3aeafab7d53b4f76d223366ae7ee9738", get_dir_hash(test_dir)) def test_get_dir_hash_non_existent_dir(self): |