Fix TestDataStorage command_timeout smallint out of range

This commit is contained in:
Xavier Bustamante Talavera 2018-10-27 09:52:11 +02:00
parent 96933b4d7e
commit b43e6f9e14
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ class TestDataStorage(Test):
reallocated_sector_count = Column(SmallInteger) reallocated_sector_count = Column(SmallInteger)
power_cycle_count = Column(SmallInteger) power_cycle_count = Column(SmallInteger)
reported_uncorrectable_errors = Column(SmallInteger) reported_uncorrectable_errors = Column(SmallInteger)
command_timeout = Column(SmallInteger) command_timeout = Column(Integer)
current_pending_sector_count = Column(SmallInteger) current_pending_sector_count = Column(SmallInteger)
offline_uncorrectable = Column(SmallInteger) offline_uncorrectable = Column(SmallInteger)
remaining_lifetime_percentage = Column(SmallInteger) remaining_lifetime_percentage = Column(SmallInteger)