Skip to content

Commit 74be332

Browse files
authored
[NFC] Fix deprecation in IntegrationTests/SwiftPMTests.swift (#6999)
`<<<` operator is deprecated and should be replaced with `.send(_: String)`
1 parent ea99df2 commit 74be332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IntegrationTests/Tests/IntegrationTests/SwiftPMTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ final class SwiftPMTests: XCTestCase {
6363
try localFileSystem.removeFileTree(packagePath.appending(components: "Sources", entry))
6464
}
6565
try localFileSystem.writeFileContents(AbsolutePath(validating: "Sources/main.m", relativeTo: packagePath)) {
66-
$0 <<< "int main() {}"
66+
$0.send("int main() {}")
6767
}
6868
let archs = ["x86_64", "arm64"]
6969

0 commit comments

Comments
 (0)