fix(auth): have refresh time match docs (#10147)

3 mins and 45 seconds == 225 seconds.

This error is is harmless but fixing it to make sure comments and
documentation reflect reality.
diff --git a/auth/auth.go b/auth/auth.go
index ea7c1b0..d579e48 100644
--- a/auth/auth.go
+++ b/auth/auth.go
@@ -39,7 +39,7 @@
 
 	// 3 minutes and 45 seconds before expiration. The shortest MDS cache is 4 minutes,
 	// so we give it 15 seconds to refresh it's cache before attempting to refresh a token.
-	defaultExpiryDelta = 215 * time.Second
+	defaultExpiryDelta = 225 * time.Second
 
 	universeDomainDefault = "googleapis.com"
 )