diff --git a/atomic_resolver_test.go b/atomic_resolver_test.go index 1ffc17c..c35a3c7 100644 --- a/atomic_resolver_test.go +++ b/atomic_resolver_test.go @@ -17,13 +17,13 @@ func TestAtomicResolver(t *testing.T) { func BenchmarkCombinationParallel(b *testing.B) { b.RunParallel(func(pb *testing.PB) { for pb.Next() { - snowflake.AtomicResolver(1) + _, _ = snowflake.AtomicResolver(1) } }) } func BenchmarkAtomicResolver(b *testing.B) { for i := 0; i < b.N; i++ { - snowflake.AtomicResolver(1) + _, _ = snowflake.AtomicResolver(1) } }