Skip to content

Commit

Permalink
Ignore ordering for potential worlds list test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dumptruckman committed Nov 25, 2024
1 parent ecf0260 commit aac076f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,6 @@ class WorldManagerTest : TestWithMockBukkit() {
File(Bukkit.getWorldContainer(), "newworld1/level.dat").createNewFile()
File(Bukkit.getWorldContainer(), "newworld2").mkdir()
File(Bukkit.getWorldContainer(), "newworld2/level.dat").createNewFile()
assertEquals(listOf("newworld1", "newworld2"), worldManager.getPotentialWorlds())
assertEquals(setOf("newworld1", "newworld2"), worldManager.getPotentialWorlds().toSet())
}
}

0 comments on commit aac076f

Please sign in to comment.