NOISSUE fix up unit test for the changed Library behavior

No more fallback for local libraries. They must be in the instance, always.
This commit is contained in:
Petr Mrázek 2018-11-12 02:02:07 +01:00
parent 0f0dc30729
commit 47b1f9a860

View File

@ -170,7 +170,7 @@ slots:
QCOMPARE(jar, {});
QCOMPARE(native, {});
QCOMPARE(native32, {QFileInfo("data/testname-testversion-linux-32.jar").absoluteFilePath()});
QCOMPARE(native64, getStorage("test/package/testname/testversion/testname-testversion-linux-64.jar"));
QCOMPARE(native64, {QFileInfo("data/testname-testversion-linux-64.jar").absoluteFilePath()});
QStringList failedFiles;
auto dls = test.getDownloads(Os_Linux, cache.get(), failedFiles, QString("data"));
QCOMPARE(dls.size(), 0);