bitmask.py: remove negative number unit test

Negative numbers are possible because signed integers could be used.
This commit is contained in:
dogeystamp 2022-07-27 21:59:51 -04:00
parent 22b1d55298
commit 0e67984d99
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

View File

@ -118,8 +118,6 @@ class TestBitmask(unittest.TestCase):
self.bmask.value = 1j
with self.assertRaises(TypeError):
self.bmask.value = 2.5
with self.assertRaises(TypeError):
self.bmask.value = -1
def test_contains(self):
"""Test `flag in mask` check."""