fix: IsContradiction typo in bench_test.go

This commit is contained in:
小唯 2026-06-15 11:08:13 +08:00
parent 8ad4a7c794
commit b9f9f75c31
1 changed files with 1 additions and 1 deletions

View File

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