Skip to content

Commit fd044ff

Browse files
committed
fix equality type
1 parent 4051d5e commit fd044ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/testing/testController/utils.unit.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,8 @@ suite('populateTestTree tests', () => {
318318

319319
// Assert- if lineno is '0', range should be defined but at the top
320320
const expectedRange = new Range(new Position(0, 0), new Position(0, 0));
321-
assert.strictEqual(mockTestItem.range, expectedRange);
321+
322+
assert.deepStrictEqual(mockTestItem.range, expectedRange);
322323
});
323324

324325
test('should update resultResolver mappings correctly for test items', () => {

0 commit comments

Comments
 (0)