Remove whitespace

This commit is contained in:
Alexander Cogneau 2015-08-12 11:02:41 +02:00
parent 61a6b196e9
commit 5a0b160736

View File

@ -44,14 +44,10 @@ class TestColumnWidths:
@pytest.mark.parametrize("model", CLASSES)
def test_list_size(self, model):
"""Test if there are 3 items in the COLUMN_WIDTHS property"""
assert len(model.COLUMN_WIDTHS) == 3
@pytest.mark.parametrize("model", CLASSES)
def test_column_width_sum(self, model):
"""Test if the sum of the widths asserts to 100"""
assert sum(model.COLUMN_WIDTHS) == 100