Remove disabled test data from QUrl autotest

The removed test data was for obex URLs, which are not supported by
QUrl.

Change-Id: I166130ae936342d415165e46b7943d198de8986b
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
Jason McDonald 2011-11-01 14:40:32 +10:00 committed by Qt by Nokia
parent 1f0f5c1691
commit a7b1f30d57

View File

@ -2944,12 +2944,6 @@ void tst_QUrl::hosts_data()
QTest::newRow("longer-ipv6-literal-v4compat") << QString("http://[fec0:8000:4000:8002:1000:ffff:200.100.50.250]")
<< QString("fec0:8000:4000:8002:1000:ffff:200.100.50.250");
#if 0
// this is actually invalid
QTest::newRow("mac-literal") << QString("obex://[00:30:1b:b7:21:fb]")
<< QString("00:30:1b:b7:21:fb");
#endif
// normal hostnames
QTest::newRow("normal") << QString("http://intern") << QString("intern");
QTest::newRow("normal2") << QString("http://qt.nokia.com") << QString("qt.nokia.com");