summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-10 17:01:16 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-10 17:01:16 +0000
commit38e464d605a7e17b961ee56ccc00eda3a912f026 (patch)
tree0e5b0ac0dc927d647bfc7cf2e9c88538c537a23d
parent6e42b112b1cebaa486c926fda759a1144cd0fe45 (diff)
downloadmorph-38e464d605a7e17b961ee56ccc00eda3a912f026.tar.gz
Fix unit tests
Tests were broken since https://gerrit.baserock.org/#/c/1418/ was merged. Change-Id: I4e5a139d84946514634214938990cca3c86f4512
-rw-r--r--morphlib/util_tests.py14
1 files changed, 4 insertions, 10 deletions
diff --git a/morphlib/util_tests.py b/morphlib/util_tests.py
index 20972a58..7289eae0 100644
--- a/morphlib/util_tests.py
+++ b/morphlib/util_tests.py
@@ -54,17 +54,11 @@ class SanitiseMorphologyPathTests(unittest.TestCase):
class MakeConcurrencyTests(unittest.TestCase):
- def test_returns_2_for_1_core(self):
- self.assertEqual(morphlib.util.make_concurrency(cores=1), 2)
+ def test_concurreny_is_num_cores(self):
+ self.assertEqual(morphlib.util.make_concurrency(cores=2), 2)
- def test_returns_3_for_2_cores(self):
- self.assertEqual(morphlib.util.make_concurrency(cores=2), 3)
-
- def test_returns_5_for_3_cores(self):
- self.assertEqual(morphlib.util.make_concurrency(cores=3), 5)
-
- def test_returns_6_for_4_cores(self):
- self.assertEqual(morphlib.util.make_concurrency(cores=4), 6)
+ def test_concurrency_is_maximum_20(self):
+ self.assertEqual(morphlib.util.make_concurrency(cores=21), 20)
class FindParentOfTests(unittest.TestCase):