diff options
Diffstat (limited to 'tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp')
-rw-r--r-- | tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp b/tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp index b9c260f..2ecf571 100644 --- a/tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp +++ b/tests/auto/qstringlistmodel/tst_qstringlistmodel.cpp @@ -169,8 +169,7 @@ void tst_QStringListModel::rowsAboutToBeRemoved_rowsRemoved_data() QStringList strings3; strings3 << "One" << "Two" << "Three" << "Four" << "Five"; QStringList aboutto3; aboutto3 << "One" << "Two" << "Three" << "Four" << "Five"; - QStringList res3; res3 ; - QTest::newRow( "data3" ) << strings3 << 0 << 5 << aboutto3 << res3; + QTest::newRow( "data3" ) << strings3 << 0 << 5 << aboutto3 << QStringList(); /* Not sure if this is a valid test */ QStringList strings4; strings4 << "One" << "Two" << "Three" << "Four" << "Five"; |