recv: remove saturation detection

This commit is contained in:
Roman Zeyde
2014-12-31 11:03:36 +02:00
parent c38208e10b
commit 477013fcdd
4 changed files with 1 additions and 27 deletions

View File

@@ -47,15 +47,6 @@ def test_dumps_loads():
assert all(x == y)
def test_saturation():
x = np.array([1, -1, 1, -1]) * 1e10
try:
common.check_saturation(x)
assert False
except common.SaturationError as e:
assert e.args == (max(x),)
def test_izip():
x = range(10)
y = range(-10, 0)