diff --git a/go/internal/governance/bench_test.go b/go/internal/governance/bench_test.go index a0d5cb5..441a95e 100644 --- a/go/internal/governance/bench_test.go +++ b/go/internal/governance/bench_test.go @@ -39,7 +39,7 @@ func BenchmarkConflictDetector_IsContradiction(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { pair := tests[i%len(tests)] - isContradiction(pair[0], pair[1]) + IsContradiction(pair[0], pair[1]) } }