users in example servers should be the same
diff --git a/examples/request-server/main.go b/examples/request-server/main.go
index 2893807..a829824 100644
--- a/examples/request-server/main.go
+++ b/examples/request-server/main.go
@@ -39,7 +39,7 @@
 			// Should use constant-time compare (or better, salt+hash) in
 			// a production setting.
 			fmt.Fprintf(debugStream, "Login: %s\n", c.User())
-			if c.User() == "testuser" && string(pass) == "" {
+			if c.User() == "testuser" && string(pass) == "tiger" {
 				return nil, nil
 			}
 			return nil, fmt.Errorf("password rejected for %q", c.User())