github.com/letsencrypt/boulder@v0.20251208.0/grpc/skew_integration.go (about) 1 //go:build integration 2 3 package grpc 4 5 import "time" 6 7 // tooSkewed always returns false, but is only built when the integration build 8 // flag is set. We use this to replace the real tooSkewed function in the 9 // integration tests, which make extensive use of fake clocks. 10 func tooSkewed(_ time.Duration) bool { 11 return false 12 }