GUITESTS: Fix XML files paths.

This commit is contained in:
Kimmo Varis 2011-06-10 12:45:49 +03:00
parent edbb66cb20
commit 85aed65e80
1 changed files with 2 additions and 2 deletions

View File

@ -37,13 +37,13 @@ void TestXmlReport::testUnquoteMessage()
void TestXmlReport::testGetVersion1()
{
const QString filepath("xmlfiles/xmlreport_v1.xml");
const QString filepath("../xmlfiles/xmlreport_v1.xml");
QCOMPARE(XmlReport::determineVersion(filepath), 1);
}
void TestXmlReport::testGetVersion2()
{
const QString filepath("xmlfiles/xmlreport_v2.xml");
const QString filepath("../xmlfiles/xmlreport_v2.xml");
QCOMPARE(XmlReport::determineVersion(filepath), 2);
}