mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:10:55 +00:00
cors test benchmark doesn't use b.N
This commit is contained in:
parent
3daaaeb32b
commit
083c155079
@ -225,8 +225,8 @@ func Benchmark_WithoutCORS(b *testing.B) {
|
||||
ctx.Output.SetStatus(500)
|
||||
})
|
||||
b.ResetTimer()
|
||||
for i := 0; i < 100; i++ {
|
||||
r, _ := http.NewRequest("PUT", "/foo", nil)
|
||||
for i := 0; i < b.N; i++ {
|
||||
handler.ServeHTTP(recorder, r)
|
||||
}
|
||||
}
|
||||
@ -246,8 +246,8 @@ func Benchmark_WithCORS(b *testing.B) {
|
||||
ctx.Output.SetStatus(500)
|
||||
})
|
||||
b.ResetTimer()
|
||||
for i := 0; i < 100; i++ {
|
||||
r, _ := http.NewRequest("PUT", "/foo", nil)
|
||||
for i := 0; i < b.N; i++ {
|
||||
handler.ServeHTTP(recorder, r)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user