Updated module path

This commit is contained in:
2025-02-25 16:51:04 +01:00
parent 809b89d689
commit 0b31c9f888
5 changed files with 14 additions and 14 deletions

View File

@ -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)
}
}