Updated module path
This commit is contained in:
@ -4,8 +4,8 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/assert"
|
||||
"git.akyoto.dev/go/markdown"
|
||||
"git.urbach.dev/go/assert"
|
||||
"git.urbach.dev/go/markdown"
|
||||
)
|
||||
|
||||
func BenchmarkSmall(b *testing.B) {
|
||||
@ -13,7 +13,7 @@ func BenchmarkSmall(b *testing.B) {
|
||||
assert.Nil(b, err)
|
||||
input := string(small)
|
||||
|
||||
for range b.N {
|
||||
for b.Loop() {
|
||||
markdown.Render(input)
|
||||
}
|
||||
}
|
||||
@ -23,7 +23,7 @@ func BenchmarkMedium(b *testing.B) {
|
||||
assert.Nil(b, err)
|
||||
input := string(medium)
|
||||
|
||||
for range b.N {
|
||||
for b.Loop() {
|
||||
markdown.Render(input)
|
||||
}
|
||||
}
|
||||
@ -33,7 +33,7 @@ func BenchmarkLarge(b *testing.B) {
|
||||
assert.Nil(b, err)
|
||||
input := string(large)
|
||||
|
||||
for range b.N {
|
||||
for b.Loop() {
|
||||
markdown.Render(input)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user