mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 04:53:33 +01:00
auto-fixed prefer-const violation
This commit is contained in:
@@ -40,7 +40,7 @@ suite('BoundModelReferenceCollection', function () {
|
||||
|
||||
test('max size', function () {
|
||||
|
||||
let disposed: number[] = [];
|
||||
const disposed: number[] = [];
|
||||
|
||||
col.add(
|
||||
URI.parse('test://farboo'),
|
||||
@@ -76,7 +76,7 @@ suite('BoundModelReferenceCollection', function () {
|
||||
col.dispose();
|
||||
col = new BoundModelReferenceCollection(extUri, 10000, 10000, 2);
|
||||
|
||||
let disposed: number[] = [];
|
||||
const disposed: number[] = [];
|
||||
|
||||
col.add(
|
||||
URI.parse('test://xxxxxxx'),
|
||||
|
||||
Reference in New Issue
Block a user