Fix NetconfAccess not being able to fetch submodules

When I implemented SysrepoAccess, I ignored the submoduleRevision
argument in the "libyang missing schema callback" as Sysrepo seemed to
work just fine without supplying it. However, libnetconf needs it
because one can't supply both module name and submodule name to a
<get-schema> request. Now, if a submodule is being requested by libyang
from NetconfAccess, I pass the submodule name to libnetconf rather
than the module name.

Issue: https://tree.taiga.io/project/jktjkt-netconf-cli/issue/123
Change-Id: I0e5f6b82b1598ecc9f27732f450b1a204ee500f9
diff --git a/tests/yang.cpp b/tests/yang.cpp
index 64bf08e..d519825 100644
--- a/tests/yang.cpp
+++ b/tests/yang.cpp
@@ -278,7 +278,7 @@
 {
     using namespace std::string_view_literals;
     YangSchema ys;
-    ys.registerModuleCallback([]([[maybe_unused]] auto modName, auto, auto) {
+    ys.registerModuleCallback([]([[maybe_unused]] auto modName, auto, auto, auto) {
         assert("example-schema"sv == modName);
         return example_schema;
     });