Skip to content

Commit be7c524

Browse files
committed
Fix lint issues
1 parent 5b75d78 commit be7c524

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/views/solution-outline/tree-structure/solution-outline-file-item.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ describe('FileItem', () => {
9494
expect(createdChildren.length).toBe(2);
9595

9696
// check attributes and merge features for each file node
97-
const fileLabels = ['RTX_Config.c', 'RTX_Config.h'];
97+
const fileLabels = ['RTX_Config.c', 'RTX_Config.h'];
9898
createdChildren.forEach((child, idx) => {
9999
expect(child.getTag()).toBe('file');
100100
expect(child.getAttribute('label')).toContain(fileLabels[idx]);
101101
expect(child.getAttribute('update')).toContain('update');
102102
expect(child.getAttribute('base')).toContain('base');
103-
expect(child.getAttribute('description')).toBeUndefined();
103+
expect(child.getAttribute('description')).toBeUndefined();
104104
});
105105

106106
});

src/views/solution-outline/tree-structure/solution-outline-hardware-item.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ describe('HardwareItemBuilder', () => {
106106
const base = device?.getAttribute('base');
107107
const gotBase = base ? path.basename(base) : '';
108108
const wantBase = 'Hello+CS300.dbgconf.base@0.0.1';
109-
expect(gotBase).toEqual(wantBase);
109+
expect(gotBase).toEqual(wantBase);
110110
});
111111

112112
});

0 commit comments

Comments
 (0)