tests: small deduplication
Change-Id: I820939610d24a2bfdba142535600caf81569f7e1
diff --git a/tests/command_completion.cpp b/tests/command_completion.cpp
index 607b8ab..8fe463f 100644
--- a/tests/command_completion.cpp
+++ b/tests/command_completion.cpp
@@ -19,18 +19,16 @@
std::ostringstream errorStream;
std::set<std::string> expectedCompletions;
int expectedContextLength;
- SECTION("")
+ SECTION("no prefix")
{
- input = "";
expectedCompletions = {"cd", "copy", "create", "delete", "set", "commit", "get", "ls", "discard", "help", "describe"};
expectedContextLength = 0;
- }
-
- SECTION(" ")
- {
- input = " ";
- expectedCompletions = {"cd", "copy", "create", "delete", "set", "commit", "get", "ls", "discard", "help", "describe"};
- expectedContextLength = 0;
+ SECTION("no space") {
+ input = "";
+ }
+ SECTION("space") {
+ input = " ";
+ }
}
SECTION("c")