From e7895b85f11d7ea7aa16a236039153c859d767d9 Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Mon, 14 Aug 2023 12:24:21 +0200 Subject: [PATCH] fix(test): corrected spec --- arduino-ide-extension/src/test/common/board-list.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arduino-ide-extension/src/test/common/board-list.test.ts b/arduino-ide-extension/src/test/common/board-list.test.ts index 7ee69f4c0..b7d301356 100644 --- a/arduino-ide-extension/src/test/common/board-list.test.ts +++ b/arduino-ide-extension/src/test/common/board-list.test.ts @@ -48,7 +48,7 @@ describe('board-list', () => { expect(labels).to.be.deep.equal(expected); }); - it('should handle port selected (port discovered)', () => { + it('should handle port selected (port detected)', () => { const { labels } = createBoardList( { ...detectedPort(unoSerialPort, uno), @@ -64,7 +64,7 @@ describe('board-list', () => { expect(labels).to.be.deep.equal(expected); }); - it('should handle port selected (port not discovered)', () => { + it('should handle port selected (port not detected)', () => { const { labels } = createBoardList( { ...detectedPort(mkr1000SerialPort, mkr1000),