From 5ebb2cd307f194627a1a12d7093032ca8a7abe65 Mon Sep 17 00:00:00 2001 From: Kota Tsuyuzaki Date: Tue, 7 Feb 2017 23:10:54 -0800 Subject: Fix error message with invalid parity number Change-Id: I620df09cf8ddd03e4a4749e9a1d31f8cbe45c752 --- pyeclib/ec_iface.py | 2 +- test/test_pyeclib_api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyeclib/ec_iface.py b/pyeclib/ec_iface.py index 20d6337..8205b10 100644 --- a/pyeclib/ec_iface.py +++ b/pyeclib/ec_iface.py @@ -167,7 +167,7 @@ class ECDriver(object): self.m = positive_int_value(value) except ValueError: raise ECDriverError( - "Invalid number of data fragments (m)") + "Invalid number of parity fragments (m)") elif key == "ec_type": if value in ["flat_xor_hd", "flat_xor_hd_3", "flat_xor_hd_4"]: if value == "flat_xor_hd" or value == "flat_xor_hd_3": diff --git a/test/test_pyeclib_api.py b/test/test_pyeclib_api.py index b3026a0..7d1cccb 100644 --- a/test/test_pyeclib_api.py +++ b/test/test_pyeclib_api.py @@ -143,7 +143,7 @@ class TestPyECLibDriver(unittest.TestCase): # m is smaller than 1 ECDriver(ec_type=ec_type, k=1, m=-100) self.assertEqual(str(err_context.exception), - "Invalid number of data fragments (m)") + "Invalid number of parity fragments (m)") def test_valid_ec_types(self): # Build list of available types and compare to VALID_EC_TYPES -- cgit v1.2.1