Fix TestDataStorage command_timeout smallint out of range
This commit is contained in:
parent
96933b4d7e
commit
b43e6f9e14
|
@ -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)
|
||||||
|
|
Reference in New Issue