diff --git a/Lib/test/test_zstd.py b/Lib/test/test_zstd.py index 57de5eb6a5c735..7bd0ffd9391529 100644 --- a/Lib/test/test_zstd.py +++ b/Lib/test/test_zstd.py @@ -294,11 +294,11 @@ def test_compress_parameters(self): # zstd lib doesn't support MT compression if not SUPPORT_MULTITHREADING: - with self.assertRaises(ZstdError): + with self.assertRaises(ValueError): ZstdCompressor(options={CompressionParameter.nb_workers:4}) - with self.assertRaises(ZstdError): + with self.assertRaises(ValueError): ZstdCompressor(options={CompressionParameter.job_size:4}) - with self.assertRaises(ZstdError): + with self.assertRaises(ValueError): ZstdCompressor(options={CompressionParameter.overlap_log:4}) # out of bounds error msg