various: make Glob return GlobReply

MultiPart: 2/3
Change-Id: I0dbd2bda846617e9fcd01bec0fd43a52840321db
diff --git a/profiles/internal/naming/namespace/all_test.go b/profiles/internal/naming/namespace/all_test.go
index ec3ad92..1349e42 100644
--- a/profiles/internal/naming/namespace/all_test.go
+++ b/profiles/internal/naming/namespace/all_test.go
@@ -89,8 +89,8 @@
 	}
 	for s := range rc {
 		switch v := s.(type) {
-		case *naming.MountEntry:
-			replies = append(replies, v.Name)
+		case *naming.GlobReplyEntry:
+			replies = append(replies, v.Value.Name)
 			if limit > 0 && len(replies) > limit {
 				boom(t, "Glob returns too many results, perhaps not limiting recursion")
 			}
@@ -773,10 +773,10 @@
 	}
 	count := 0
 	for result := range c {
-		if me, ok := result.(*naming.MountEntry); ok {
+		if me, ok := result.(*naming.GlobReplyEntry); ok {
 			count++
-			if expected := true; me.IsLeaf != expected {
-				boom(t, "unexpected me.IsLeaf value. Got %v, expected %v", me.IsLeaf, expected)
+			if expected := true; me.Value.IsLeaf != expected {
+				boom(t, "unexpected me.IsLeaf value. Got %v, expected %v", me.Value.IsLeaf, expected)
 			}
 		}
 	}