Skip to content

Commit 2e1b39e

Browse files
committed
Remove float128 test
1 parent a87a147 commit 2e1b39e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

numcodecs/tests/test_bitinfo.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ def test_bitinfo_encode_errors():
4343
with pytest.raises(TypeError):
4444
bitinfo.encode(a)
4545

46-
a = np.array([1.0, 2.0, 3.0], dtype="float128")
47-
with pytest.raises(TypeError):
48-
bitinfo.encode(a)
49-
5046

5147
def test_exponent_bias():
5248
assert exponent_bias("f2") == 15
@@ -58,7 +54,7 @@ def test_exponent_bias():
5854

5955

6056
def test_mutual_information():
61-
""" Test mutual information calculation
57+
"""Test mutual information calculation
6258
6359
Tests for changes to the mutual_information
6460
but not the correcteness of the original.

0 commit comments

Comments
 (0)