diff --git a/protocol/src/test/kotlin/org/openrs2/protocol/jaggrab/JaggrabRequestDecoderTest.kt b/protocol/src/test/kotlin/org/openrs2/protocol/jaggrab/JaggrabRequestDecoderTest.kt index 2e4859c5..5ec562df 100644 --- a/protocol/src/test/kotlin/org/openrs2/protocol/jaggrab/JaggrabRequestDecoderTest.kt +++ b/protocol/src/test/kotlin/org/openrs2/protocol/jaggrab/JaggrabRequestDecoderTest.kt @@ -10,10 +10,10 @@ class JaggrabRequestDecoderTest { @Test fun testDecode() { val channel = EmbeddedChannel(JaggrabRequestDecoder) - channel.writeInbound("JAGGRAB /runescape.pack200") + channel.writeInbound("JAGGRAB runescape.pack200") val actual = channel.readInbound() - assertEquals(JaggrabRequest("/runescape.pack200"), actual) + assertEquals(JaggrabRequest("runescape.pack200"), actual) } @Test