Skip to content

Fix typo in class name "TestNSFileManger -> TestNSFileManager" #342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions TestFoundation/TestNSFileManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
import SwiftXCTest
#endif

class TestNSFileManger : XCTestCase {
class TestNSFileManager : XCTestCase {

static var allTests: [(String, TestNSFileManger -> () throws -> Void)] {
static var allTests: [(String, TestNSFileManager -> () throws -> Void)] {
return [
("test_createDirectory", test_createDirectory ),
("test_createFile", test_createFile ),
Expand Down
2 changes: 1 addition & 1 deletion TestFoundation/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ XCTMain([
testCase(TestNSDate.allTests),
testCase(TestNSDateFormatter.allTests),
testCase(TestNSDictionary.allTests),
testCase(TestNSFileManger.allTests),
testCase(TestNSFileManager.allTests),
testCase(TestNSGeometry.allTests),
testCase(TestNSHTTPCookie.allTests),
testCase(TestNSIndexPath.allTests),
Expand Down