tst_QDoubleValidator::setRangeOverloads(): rename a data row
Two rows shared the same name. They claimed the value used was out of range, but actually that was only true for one of them. The other was in range, but the test reduced the number of digits allowed after the decimal point, thereby making it invalid, so rename that one to reflect this. Change-Id: I0936ea25ec799c0069cd148b9f9bae5d35906093 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
This commit is contained in:
parent
09e86cfbef
commit
e7913006f1
@ -642,7 +642,7 @@ void tst_QDoubleValidator::setRangeOverloads_data()
|
|||||||
QTest::newRow("scientific, 1 digits after point")
|
QTest::newRow("scientific, 1 digits after point")
|
||||||
<< QDoubleValidator::ScientificNotation << -1 << -100.0 << 100.0 << 0
|
<< QDoubleValidator::ScientificNotation << -1 << -100.0 << 100.0 << 0
|
||||||
<< QString("1.2e1") << ACC << INV;
|
<< QString("1.2e1") << ACC << INV;
|
||||||
QTest::newRow("scientific, 3 digits after point, not in range")
|
QTest::newRow("scientific, 3 digits after point, demand fewer")
|
||||||
<< QDoubleValidator::ScientificNotation << 3 << -100.0 << 100.0 << 1
|
<< QDoubleValidator::ScientificNotation << 3 << -100.0 << 100.0 << 1
|
||||||
<< QString("10.234e-1") << ACC << INV;
|
<< QString("10.234e-1") << ACC << INV;
|
||||||
QTest::newRow("scientific, 3 digits after point, not in range")
|
QTest::newRow("scientific, 3 digits after point, not in range")
|
||||||
|
Loading…
Reference in New Issue
Block a user