Skip to content

Commit 95b9756

Browse files
committed
Fix new search result counts from void 0 replacement in search test fixtures
1 parent ef2547d commit 95b9756

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/vs/workbench/services/search/test/node/textSearch.integrationTest.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ suite('Search-integration', function () {
165165
contentPattern: { pattern: 'e' }
166166
};
167167

168-
return doSearchTest(config, 776);
168+
return doSearchTest(config, 788);
169169
});
170170

171171
test('Text: e (with excludes)', () => {
@@ -185,7 +185,7 @@ suite('Search-integration', function () {
185185
includePattern: { '**/examples/**': true }
186186
};
187187

188-
return doSearchTest(config, 382);
188+
return doSearchTest(config, 394);
189189
});
190190

191191
// TODO
@@ -228,7 +228,7 @@ suite('Search-integration', function () {
228228
excludePattern: { '**/examples/small.js': true }
229229
};
230230

231-
return doSearchTest(config, 361);
231+
return doSearchTest(config, 371);
232232
});
233233

234234
test('Text: a (capped)', () => {
@@ -284,7 +284,7 @@ suite('Search-integration', function () {
284284
excludePattern: makeExpression('**/*.txt')
285285
};
286286

287-
return doSearchTest(config, 382);
287+
return doSearchTest(config, 394);
288288
});
289289

290290
test('Multiroot: e with global excludes', () => {
@@ -308,7 +308,7 @@ suite('Search-integration', function () {
308308
contentPattern: { pattern: 'e' }
309309
};
310310

311-
return doSearchTest(config, 286);
311+
return doSearchTest(config, 298);
312312
});
313313

314314
test('Text: 语', () => {

0 commit comments

Comments
 (0)