We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3170fe3 commit a6cbff7Copy full SHA for a6cbff7
1 file changed
go/internal/intelligence/extractor/enricher_test.go
@@ -221,9 +221,9 @@ func TestEnricher_BoundedConcurrency(t *testing.T) {
221
dir := t.TempDir()
222
nodes := make([]*model.CodeNode, 0, nFiles)
223
for i := 0; i < nFiles; i++ {
224
- rel := filepath.Join("src", filepath.Base(t.TempDir())+".java")
225
- // One file per node; deterministic distinct paths.
226
- rel = filepath.Join("src", "f", "F"+itoa(i)+".java")
+ // Deterministic distinct file paths so the orchestrator schedules
+ // one task per file.
+ rel := filepath.Join("src", "f", "F"+itoa(i)+".java")
227
writeFile(t, filepath.Join(dir, rel), "class F"+itoa(i)+" {}")
228
n := model.NewCodeNode("n:"+itoa(i), model.NodeClass, "F"+itoa(i))
229
n.FilePath = rel
0 commit comments