Skip to content

Commit 80b1e17

Browse files
authored
Fixtures: fix typos (#8028)
Review and correct all typos in the `Fixtures` directory. ### Motivation: To enhance the overall quality of the project, I reviewed all files in the `Fixtures` directory and fixed any identified typos. ### Modifications: A typo was found in a string, and another in a test function name. Both have been corrected. ### Result: These changes are backward compatible since they only involve non-functional elements and do not affect the code execution.
1 parent 96eeb1d commit 80b1e17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Fixtures/Miscellaneous/CheckTestLibraryEnvironmentVariable/Tests/CheckTestLibraryEnvironmentVariableTests/CheckTestLibraryEnvironmentVariableTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import XCTest
22

33
final class CheckTestLibraryEnvironmentVariableTests: XCTestCase {
4-
func testEnviromentVariable() throws {
4+
func testEnvironmentVariable() throws {
55
let envvar = ProcessInfo.processInfo.environment["SWIFT_TESTING_ENABLED"]
66
XCTAssertEqual(envvar, "0")
77
}

Fixtures/Miscellaneous/MissingDependency/Bar/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
let package = Package(
55
name: "Bar",
66
dependencies: [
7-
.package(url: "../NonExistantPackage", from: "1.0.0"),
7+
.package(url: "../NonExistentPackage", from: "1.0.0"),
88
],
99
targets: [
1010
.target(name: "Bar", path: "./"),

0 commit comments

Comments
 (0)