Fix describe path parsing

describe still had two different path alternatives even though anyPath
covers both.

Issue: https://tree.taiga.io/project/jktjkt-netconf-cli/issue/201
Change-Id: I19928e3540dc72e8c843ae87491bd1c6226483ba
diff --git a/tests/path_completion.cpp b/tests/path_completion.cpp
index ffd3e93..6c7a8e6 100644
--- a/tests/path_completion.cpp
+++ b/tests/path_completion.cpp
@@ -205,6 +205,16 @@
         }
     }
 
+    SECTION("describe completion")
+    {
+        SECTION("path with list at the end")
+        {
+            input = "describe /example:list/";
+            expectedCompletions = {"contInList/", "number "};
+            expectedContextLength = 0;
+        }
+    }
+
     SECTION("list keys completion")
     {
         SECTION("cd example:lis")