Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-16 04:50:07 +01:00
Fix test
Dieser Commit ist enthalten in:
Ursprung
37b9e6591e
Commit
4588f341ec
@ -25,14 +25,6 @@
|
|||||||
|
|
||||||
package org.geysermc.geyser.scoreboard.network;
|
package org.geysermc.geyser.scoreboard.network;
|
||||||
|
|
||||||
import static org.geysermc.geyser.scoreboard.network.util.AssertUtils.assertNextPacket;
|
|
||||||
import static org.geysermc.geyser.scoreboard.network.util.AssertUtils.assertNextPacketMatch;
|
|
||||||
import static org.geysermc.geyser.scoreboard.network.util.AssertUtils.assertNextPacketType;
|
|
||||||
import static org.geysermc.geyser.scoreboard.network.util.AssertUtils.assertNoNextPacket;
|
|
||||||
import static org.geysermc.geyser.scoreboard.network.util.GeyserMockContextScoreboard.mockContextScoreboard;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
||||||
|
|
||||||
import net.kyori.adventure.text.Component;
|
import net.kyori.adventure.text.Component;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.entity.EntityDataTypes;
|
import org.cloudburstmc.protocol.bedrock.data.entity.EntityDataTypes;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.AddEntityPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.AddEntityPacket;
|
||||||
@ -75,6 +67,11 @@ import java.util.EnumSet;
|
|||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
import static org.geysermc.geyser.scoreboard.network.util.AssertUtils.*;
|
||||||
|
import static org.geysermc.geyser.scoreboard.network.util.GeyserMockContextScoreboard.mockContextScoreboard;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for issues reported on GitHub.
|
* Tests for issues reported on GitHub.
|
||||||
*/
|
*/
|
||||||
@ -157,7 +154,7 @@ public class ScoreboardIssueTests {
|
|||||||
new ClientboundPlayerInfoUpdatePacket(
|
new ClientboundPlayerInfoUpdatePacket(
|
||||||
EnumSet.of(PlayerListEntryAction.ADD_PLAYER, PlayerListEntryAction.UPDATE_LISTED),
|
EnumSet.of(PlayerListEntryAction.ADD_PLAYER, PlayerListEntryAction.UPDATE_LISTED),
|
||||||
new PlayerListEntry[] {
|
new PlayerListEntry[] {
|
||||||
new PlayerListEntry(npcUuid, new GameProfile(npcUuid, "1297"), false, 0, GameMode.SURVIVAL, null, null, 0, null, null)
|
new PlayerListEntry(npcUuid, new GameProfile(npcUuid, "1297"), false, 0, GameMode.SURVIVAL, null, 0, null, 0, null, null)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
//todo we don't have to remove an entry that was never in the playerlist in the first place
|
//todo we don't have to remove an entry that was never in the playerlist in the first place
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren