def testbitStringUnion2(self): """Tests that the function that returns the union of a set of bitstrings behaves correctly""" result = decoder.bitStringUnion(((1, None), (None, 1))) self.assertEqual([None, None], result)
def testbitStringUnion2(self): """Tests that the function that returns the union of a set of bitStrings behaves correctly""" result = decoder.bitStringUnion(((1, None), (None, 1))) self.assertEqual([None, None], result)