Skip to content

Commit

Permalink
GH-2026 fix test failure on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Oct 25, 2017
1 parent 23d2a99 commit f49f8b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/logic/minecraft/MojangVersionFormat_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private
auto vfile = MojangVersionFormat::versionFileFromJson(doc, "1.9-simple.json");
auto doc2 = MojangVersionFormat::versionFileToJson(vfile);
writeJson("1.9-simple-passthorugh.json", doc2);
QCOMPARE(doc, doc2);
QCOMPARE(doc.toJson(), doc2.toJson());
}

void test_Through()
Expand All @@ -44,7 +44,7 @@ private
auto vfile = MojangVersionFormat::versionFileFromJson(doc, "1.9.json");
auto doc2 = MojangVersionFormat::versionFileToJson(vfile);
writeJson("1.9-passthorugh.json", doc2);
QCOMPARE(doc, doc2);
QCOMPARE(doc.toJson(), doc2.toJson());
}
};

Expand Down

0 comments on commit f49f8b8

Please sign in to comment.