Skip to content

Commit af8abe7

Browse files
authored
rename a test whose name is duplicated with another. (microsoft#183104)
rename test whose name is duplicated with another.
1 parent 123deca commit af8abe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/base/test/common/arrays.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ suite('Arrays', () => {
404404
assert.deepStrictEqual(queue1.takeWhile(x => true), [7, 6]);
405405
});
406406

407-
test('TakeWhile 1', () => {
407+
test('TakeFromEndWhile 1', () => {
408408
const queue1 = new arrays.ArrayQueue([9, 8, 1, 7, 6]);
409409
assert.deepStrictEqual(queue1.takeFromEndWhile(x => x > 5), [7, 6]);
410410
assert.deepStrictEqual(queue1.takeFromEndWhile(x => x < 2), [1]);

0 commit comments

Comments
 (0)