Updated Go version

This commit is contained in:
Eduard Urbach 2025-02-14 16:46:36 +01:00
parent d589b02570
commit 88b3f468d1
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
9 changed files with 10 additions and 10 deletions

View file

@ -49,7 +49,7 @@ func BenchmarkExamples(b *testing.B) {
b.Run(test.Name, func(b *testing.B) {
compiler := build.New(filepath.Join("..", "examples", test.Name))
for range b.N {
for b.Loop() {
_, err := compiler.Run()
assert.Nil(b, err)
}