Updated module path
This commit is contained in:
parent
809b89d689
commit
0b31c9f888
5 changed files with 14 additions and 14 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue