diff --git a/proxy/src/test/java/com/velocitypowered/proxy/command/SuggestionsProviderTests.java b/proxy/src/test/java/com/velocitypowered/proxy/command/SuggestionsProviderTests.java index 1cb5d0551..3c721fc95 100644 --- a/proxy/src/test/java/com/velocitypowered/proxy/command/SuggestionsProviderTests.java +++ b/proxy/src/test/java/com/velocitypowered/proxy/command/SuggestionsProviderTests.java @@ -119,9 +119,8 @@ public class SuggestionsProviderTests extends CommandTestSuite { } }); - // TODO Fix merging - assertSuggestions("hello ", "bar", "baz", "qux"); - assertSuggestions("hello bar", "baz", "qux"); + assertSuggestions("foo ", "bar", "baz", "qux"); + assertSuggestions("foo bar", "baz", "qux"); } static final class NoSuggestionsCommand implements RawCommand {