feat(oonirun): improve tests (#915)
See https://github.com/ooni/probe/issues/2184 While there, rename `runtimex.PanicIfFalse` to `runtimex.Assert` (it was about time...)
This commit is contained in:
parent
a8a29cc0dd
commit
d0da224a2a
32 changed files with 1837 additions and 112 deletions
|
|
@ -104,7 +104,7 @@ func NewDefaultCertPool() *x509.CertPool {
|
|||
// Assumption: AppendCertsFromPEM cannot fail because we
|
||||
// have a test in certify_test.go that guarantees that
|
||||
ok := pool.AppendCertsFromPEM([]byte(pemcerts))
|
||||
runtimex.PanicIfFalse(ok, "pool.AppendCertsFromPEM failed")
|
||||
runtimex.Assert(ok, "pool.AppendCertsFromPEM failed")
|
||||
return pool
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue