diff options
author | Tushar Gohad <tushar.gohad@intel.com> | 2015-03-08 10:48:08 -0700 |
---|---|---|
committer | Tushar Gohad <tushar.gohad@intel.com> | 2015-03-08 10:48:08 -0700 |
commit | 8aef7fe240c5a2af102730de8bd2473f14b0706e (patch) | |
tree | 7a8201525a230cfffbe543eab040d45ddce439bb | |
parent | 6f0f496a10a91217b3c2b8bda6aa98f03b53a70a (diff) | |
download | pyeclib-8aef7fe240c5a2af102730de8bd2473f14b0706e.tar.gz |
Minor test message cleanups
-rw-r--r-- | test/test_pyeclib_c.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pyeclib_c.py b/test/test_pyeclib_c.py index ea90111..d1651b9 100644 --- a/test/test_pyeclib_c.py +++ b/test/test_pyeclib_c.py @@ -291,7 +291,7 @@ class TestPyECLib(unittest.TestCase): return format(throughput, '.10g') @skipIf("flat_xor_hd" not in _available_backends, - "xor backend is not available in your enviromnet") + "\nxor backend is not available in your enviromnet") def test_xor_code(self): for (ec_type, k, m, hd) in self.xor_types: print(("\nRunning tests for %s k=%d, m=%d, hd=%d" % (ec_type, k, m, hd))) @@ -320,7 +320,7 @@ class TestPyECLib(unittest.TestCase): (size_str, self.get_throughput(avg_time, size_str))) @skipIf("shss" not in _available_backends, - "shss backend is not available in your enviromnet") + "\nshss backend is not available in your enviromnet") def test_shss(self): for (ec_type, k, m) in self.shss: print(("\nRunning tests for %s k=%d, m=%d" % (ec_type, k, m))) |