Skip to content

Commit d30e04b

Browse files
committed
Update changelog
1 parent 16a0550 commit d30e04b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
- Don't start debugging XCTest cases if the swift-testing debug session was stopped ([#1797](https://github.com/swiftlang/vscode-swift/pull/1797))
1515
- Improve error handling when the swift path is misconfigured ([#1801](https://github.com/swiftlang/vscode-swift/pull/1801))
16+
- Fix an error when performing "Run/Debug Tests Multiple Times" on Linux ([#1824](https://github.com/swiftlang/vscode-swift/pull/1824))
1617

1718
## 2.11.20250806 - 2025-08-06
1819

src/commands/testMultipleTimes.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ export function extractTestItemsAndCount(
128128
result.count = arg ?? undefined;
129129
return result;
130130
} else if (typeof arg === "object") {
131-
if (arg.hasOwnProperty("id") && arg.hasOwnProperty("uri")) {
131+
if (
132+
Object.prototype.hasOwnProperty.call(arg, "id") &&
133+
Object.prototype.hasOwnProperty.call(arg, "uri")
134+
) {
132135
result.testItems.push(arg);
133136
}
134137
return result;

0 commit comments

Comments
 (0)