diff options
author | BonfaceKilz | 2021-05-08 19:16:20 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-08 19:19:47 +0300 |
commit | 700a53b13c8229c91397762565b463283b92539c (patch) | |
tree | f8424cc2417ca0959185ef4e98ab49763241bfc9 /tests | |
parent | 7076597adea0d05bc5f9219266b870d03f9bfd24 (diff) | |
download | genenetwork3-700a53b13c8229c91397762565b463283b92539c.tar.gz |
Fix typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/computations/test_gemma.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/computations/test_gemma.py b/tests/unit/computations/test_gemma.py index 1081d12..73dd5eb 100644 --- a/tests/unit/computations/test_gemma.py +++ b/tests/unit/computations/test_gemma.py @@ -33,7 +33,7 @@ class TestGemma(unittest.TestCase): @mock.patch("gn3.computations.gemma.get_hash_of_files") def test_compute_k_values_without_loco(self, mock_get_hash): - """Test computing k valuse without loco""" + """Test computing k values without loco""" mock_get_hash.return_value = "my-hash" self.assertEqual( generate_gemma_cmd(gemma_cmd="gemma-wrapper", @@ -54,7 +54,7 @@ class TestGemma(unittest.TestCase): @mock.patch("gn3.computations.gemma.get_hash_of_files") def test_generate_gemma_cmd_with_loco(self, mock_get_hash): - """Test computing k valuse with loco""" + """Test computing k values with loco""" mock_get_hash.return_value = "my-hash" self.assertEqual( generate_gemma_cmd(gemma_cmd="gemma-wrapper", |