def test_4(self): """Predictable errors""" width = gmw(self.data, 4) assert width == len(fn('viking')), width
def test_3(self): width = gmw(self.data, 3) assert width == len(fn(1003)), width
def test_1(self): width = gmw(self.data, 1) assert width == len(fn(300101)), width
def test_2(self): width = gmw(self.data, 2) assert width == len(fn("land speed")), width
def test_0(self): width = gmw(self.data, 0) assert width == len(fn("lumberjacks")), width