diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-12-28 14:55:02 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-12-28 14:55:02 (GMT) |
commit | d0c3d9770b5c33810f12e409e2304957079a2608 (patch) | |
tree | f222019fe7acd3b37bd2c9f2a99e582b0ab6e22e /tests | |
parent | 6e90192b599cee9b903177a0978198326f667613 (diff) | |
download | Qt-d0c3d9770b5c33810f12e409e2304957079a2608.zip Qt-d0c3d9770b5c33810f12e409e2304957079a2608.tar.gz Qt-d0c3d9770b5c33810f12e409e2304957079a2608.tar.bz2 |
Fix tst_QFileInfo::isHidden_data on Windows
Commit d27006b2a853924a11aa2bc45 did not fully revert the test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qfileinfo/tst_qfileinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qfileinfo/tst_qfileinfo.cpp b/tests/auto/qfileinfo/tst_qfileinfo.cpp index 84ea52b..5ea7100 100644 --- a/tests/auto/qfileinfo/tst_qfileinfo.cpp +++ b/tests/auto/qfileinfo/tst_qfileinfo.cpp @@ -1074,8 +1074,8 @@ void tst_QFileInfo::isHidden_data() #if defined(Q_OS_WIN) && !defined(Q_OS_WINCE) QTest::newRow("C:/RECYCLER") << QString::fromLatin1("C:/RECYCLER") << true; - QTest::newRow("C:/RECYCLER/.") << QString::fromLatin1("C:/RECYCLER/.") << false; - QTest::newRow("C:/RECYCLER/..") << QString::fromLatin1("C:/RECYCLER/..") << false; + QTest::newRow("C:/RECYCLER/.") << QString::fromLatin1("C:/RECYCLER/.") << true; + QTest::newRow("C:/RECYCLER/..") << QString::fromLatin1("C:/RECYCLER/..") << true; #endif #if defined(Q_OS_UNIX) && !defined(Q_OS_SYMBIAN) |