Skip to content

Commit

Permalink
fix(test): corrected spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Akos Kitta committed Aug 14, 2023
1 parent db6a68e commit e7895b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arduino-ide-extension/src/test/common/board-list.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down

0 comments on commit e7895b8

Please sign in to comment.