From b9f9f75c31adbf505b0fd19f9b2e07f041c7faa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=94=AF?= Date: Mon, 15 Jun 2026 11:08:13 +0800 Subject: [PATCH] fix: IsContradiction typo in bench_test.go --- go/internal/governance/bench_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) } }