Skip to content

Commit

Permalink
NOISSUE fix up unit test for the changed Library behavior
Browse files Browse the repository at this point in the history
No more fallback for local libraries. They must be in the instance, always.
  • Loading branch information
peterix committed Nov 12, 2018
1 parent 0f0dc30 commit 47b1f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/logic/minecraft/Library_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private
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);
Expand Down

0 comments on commit 47b1f9a

Please sign in to comment.