Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolMineman committed Feb 20, 2022
1 parent 125d564 commit 4393e66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void mcTest1_17() {
void expTestOld() {
VersionMeta meta = Minecraft.getExperimentalVersion("https://launcher.mojang.com/experiments/combat/610f5c9874ba8926d5ae1bcce647e5f0e6e7c889/1_14_combat-212796.zip");
assertNotNull(meta);
assertEquals("1_14_combat-212796", meta.version);
assertEquals("1.14_combat-212796", meta.version);
Path server = Minecraft.getDownload(meta, "server");
assertTrue(Files.isRegularFile(server));
for (Dependency lib : Minecraft.getDependencies(meta)) {
Expand All @@ -68,7 +68,7 @@ void expTestOld() {
void expTest1_19() {
VersionMeta meta = Minecraft.getExperimentalVersion("https://launcher.mojang.com/v1/objects/b1e589c1d6ed73519797214bc796e53f5429ac46/1_19_deep_dark_experimental_snapshot-1.zip");
assertNotNull(meta);
assertEquals("1_19_deep_dark_experimental_snapshot-1", meta.version);
assertEquals("1.19_deep_dark_experimental_snapshot-1", meta.version);
Path server = Minecraft.getDownload(meta, "server");
assertTrue(Files.isRegularFile(server));
for (Dependency lib : Minecraft.getDependencies(meta)) {
Expand Down

0 comments on commit 4393e66

Please sign in to comment.