From 700a53b13c8229c91397762565b463283b92539c Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Sat, 8 May 2021 19:16:20 +0300 Subject: Fix typo --- tests/unit/computations/test_gemma.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/unit/computations/test_gemma.py') 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", -- cgit v1.2.3