| Index: third_party/typ/typ/tests/pool_test.py
|
| diff --git a/third_party/typ/typ/tests/pool_test.py b/third_party/typ/typ/tests/pool_test.py
|
| index 319c3961510e39916a1397ca24ac2ae3913a822b..e4b8bd754042cb45e46d8739fb34f9d340efdc12 100644
|
| --- a/third_party/typ/typ/tests/pool_test.py
|
| +++ b/third_party/typ/typ/tests/pool_test.py
|
| @@ -157,11 +157,11 @@
|
|
|
| host = Host()
|
| jobs = 2
|
| - self.assertRaises(Exception, make_pool,
|
| + self.assertRaises(ValueError, make_pool,
|
| host, jobs, _stub, unpicklable_fn, None, None)
|
| - self.assertRaises(Exception, make_pool,
|
| + self.assertRaises(ValueError, make_pool,
|
| host, jobs, _stub, None, unpicklable_fn, None)
|
| - self.assertRaises(Exception, make_pool,
|
| + self.assertRaises(ValueError, make_pool,
|
| host, jobs, _stub, None, None, unpicklable_fn)
|
|
|
| def test_no_close(self):
|
|
|