Skip to content

Commit e2a94b5

Browse files
committed
test
1 parent 02b5491 commit e2a94b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/common/terminals/service.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ suite('Terminal Service', () => {
274274
service.executeCommand(textToSend, true);
275275

276276
terminal.verify((t) => t.show(TypeMoq.It.isValue(true)), TypeMoq.Times.exactly(1));
277-
terminal.verify((t) => t.sendText(TypeMoq.It.isValue(textToSend)), TypeMoq.Times.never());
277+
terminal.verify((t) => t.sendText(TypeMoq.It.isValue(textToSend)), TypeMoq.Times.exactly(1));
278278
});
279279

280280
test('Ensure terminal is not shown if `hideFromUser` option is set to `true`', async () => {

0 commit comments

Comments
 (0)