Remove outdated assumption from QVariant autotest.
The test was assuming that "data()" is a special function in autotests, but that hasn't been the case since early prototypes of testlib. Change-Id: Ic24cf5dc539b55d12eba0a6ab17173e2ed698f21 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>bb10
parent
16a1d5c81b
commit
0e905e9138
|
|
@ -228,7 +228,7 @@ private slots:
|
|||
|
||||
void podUserType();
|
||||
|
||||
void data_(); // data is virtual function in QtTestCase
|
||||
void data();
|
||||
void constData();
|
||||
|
||||
void saveLoadCustomTypes();
|
||||
|
|
@ -2221,7 +2221,7 @@ void tst_QVariant::basicUserType()
|
|||
QCOMPARE(v.toByteArray(), QByteArray("bar"));
|
||||
}
|
||||
|
||||
void tst_QVariant::data_()
|
||||
void tst_QVariant::data()
|
||||
{
|
||||
QVariant v;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue