From b80e33503f27bd1c1fb7d2f1931bb943a2b4ecb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Sat, 19 Sep 2020 23:39:20 +0200 Subject: [PATCH] Fix dumb test breakage --- .../com/intellectualsites/commands/CommandSuggestionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud-core/src/test/java/com/intellectualsites/commands/CommandSuggestionsTest.java b/cloud-core/src/test/java/com/intellectualsites/commands/CommandSuggestionsTest.java index 89814bf0..124f9092 100644 --- a/cloud-core/src/test/java/com/intellectualsites/commands/CommandSuggestionsTest.java +++ b/cloud-core/src/test/java/com/intellectualsites/commands/CommandSuggestionsTest.java @@ -72,7 +72,7 @@ public class CommandSuggestionsTest { Assertions.assertTrue(suggestions.isEmpty()); final String input2 = "test "; final List suggestions2 = manager.suggest(new TestCommandSender(), input2); - Assertions.assertEquals(Arrays.asList("comb", "one", "two", "var"), suggestions2); + Assertions.assertEquals(Arrays.asList("alt", "comb", "one", "two", "var"), suggestions2); } @Test