From 79824c0a86fdfaa20486cb053b491838d19569e4 Mon Sep 17 00:00:00 2001 From: Hugo Manrique Date: Wed, 9 Jun 2021 19:15:27 +0200 Subject: [PATCH] Fix alias typo in suggestion merge test --- .../proxy/command/SuggestionsProviderTests.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 ff486830a..c27401ea8 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 {