Skip to content

Commit

Permalink
Fux lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulacamargo25 committed Oct 4, 2023
1 parent 9459a25 commit 6cf4856
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ suite('Debugging - launch.json Updater Service', () => {
const position = new Position(1, 0);
document
.setup((doc) => doc.lineAt(1))
.returns(() => ({ range: new Range(1, 0, 1, 1) } as TextLine))
.returns(() => ({ range: new Range(1, 0, 1, 1) }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.getText(typemoq.It.isAny()))
Expand All @@ -414,7 +414,7 @@ suite('Debugging - launch.json Updater Service', () => {
const position = new Position(2, 2);
document
.setup((doc) => doc.lineAt(2))
.returns(() => ({ range: new Range(2, 0, 1, 5) } as TextLine))
.returns(() => ({ range: new Range(2, 0, 1, 5) }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.getText(typemoq.It.isAny()))
Expand All @@ -432,7 +432,7 @@ suite('Debugging - launch.json Updater Service', () => {
const position = new Position(2, 2);
document
.setup((doc) => doc.lineAt(2))
.returns(() => ({ range: new Range(2, 0, 2, 3) } as TextLine))
.returns(() => ({ range: new Range(2, 0, 2, 3) }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.getText(typemoq.It.isAny()))
Expand All @@ -450,11 +450,11 @@ suite('Debugging - launch.json Updater Service', () => {
const position = new Position(2, 2);
document
.setup((doc) => doc.lineAt(1))
.returns(() => ({ range: new Range(1, 0, 1, 3), text: '}, ' } as TextLine))
.returns(() => ({ range: new Range(1, 0, 1, 3), text: '}, ' }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.lineAt(2))
.returns(() => ({ range: new Range(2, 0, 2, 3), text: ' ' } as TextLine))
.returns(() => ({ range: new Range(2, 0, 2, 3), text: ' ' }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.getText(typemoq.It.isAny()))
Expand All @@ -472,11 +472,11 @@ suite('Debugging - launch.json Updater Service', () => {
const position = new Position(2, 2);
document
.setup((doc) => doc.lineAt(1))
.returns(() => ({ range: new Range(1, 0, 1, 3), text: '} ' } as TextLine))
.returns(() => ({ range: new Range(1, 0, 1, 3), text: '} ' }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.lineAt(2))
.returns(() => ({ range: new Range(2, 0, 2, 3), text: ' ' } as TextLine))
.returns(() => ({ range: new Range(2, 0, 2, 3), text: ' ' }) as TextLine)
.verifiable(typemoq.Times.atLeastOnce());
document
.setup((doc) => doc.getText(typemoq.It.isAny()))
Expand Down

0 comments on commit 6cf4856

Please sign in to comment.