@@ -190,8 +190,8 @@ func TestMaybeAutoImportJSONL_FailedImportStampPreventsRepeatedImport(t *testing
190190 count := swapFallbackImporter (t , errors .New ("test importer failed" ))
191191
192192 store := & fakeFallbackStore {statsTotalIssues : 0 }
193- maybeAutoImportJSONL (context .Background (), store , dir , false )
194- maybeAutoImportJSONL (context .Background (), store , dir , false )
193+ maybeAutoImportJSONL (context .Background (), store , dir )
194+ maybeAutoImportJSONL (context .Background (), store , dir )
195195
196196 if got := count .Load (); got != 1 {
197197 t .Fatalf ("fallback importer invoked %d time(s), want 1 for unchanged JSONL after failed attempt stamp" , got )
@@ -210,8 +210,8 @@ func TestMaybeAutoImportJSONL_SuccessStampPreventsRepeatedImport(t *testing.T) {
210210 t .Cleanup (func () { fallbackImporter = orig })
211211
212212 store := & fakeFallbackStore {statsTotalIssues : 0 }
213- maybeAutoImportJSONL (context .Background (), store , dir , false )
214- maybeAutoImportJSONL (context .Background (), store , dir , false )
213+ maybeAutoImportJSONL (context .Background (), store , dir )
214+ maybeAutoImportJSONL (context .Background (), store , dir )
215215
216216 if got := count .Load (); got != 1 {
217217 t .Fatalf ("fallback importer invoked %d time(s), want 1 for unchanged JSONL after success stamp" , got )
@@ -230,11 +230,11 @@ func TestMaybeAutoImportJSONL_ChangedJSONLBypassesSuccessStamp(t *testing.T) {
230230 t .Cleanup (func () { fallbackImporter = orig })
231231
232232 store := & fakeFallbackStore {statsTotalIssues : 0 }
233- maybeAutoImportJSONL (context .Background (), store , dir , false )
233+ maybeAutoImportJSONL (context .Background (), store , dir )
234234 if err := os .WriteFile (filepath .Join (dir , "issues.jsonl" ), []byte (`{"_type":"issue","id":"unit-2","title":"changed","status":"open","priority":2,"issue_type":"task"}` + "\n " ), 0o600 ); err != nil {
235235 t .Fatal (err )
236236 }
237- maybeAutoImportJSONL (context .Background (), store , dir , false )
237+ maybeAutoImportJSONL (context .Background (), store , dir )
238238
239239 if got := count .Load (); got != 2 {
240240 t .Fatalf ("fallback importer invoked %d time(s), want 2 after JSONL changed" , got )
0 commit comments