Strip unneeded functionality

This commit is contained in:
2025-04-03 23:19:49 -04:00
parent 35a0c7bd7e
commit f4afca81ad
6 changed files with 11 additions and 76 deletions
+2 -2
View File
@@ -46,12 +46,12 @@ func TestUnixSock(t *testing.T) {
}
defer c.Close()
creds, err := Get(c)
creds := Get(c)
if err != nil {
t.Fatalf("Get: %v", err)
}
uid, ok := creds.UserID()
uid := creds.UserID()
if !ok {
t.Errorf("no UID")
}