Browse Source

Merge pull request #413 from getaaron/fix-typo-in-download-test

Fix typo in download test
Mattt Thompson 10 years ago
parent
commit
2bd5b4a836
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tests/DownloadTests.swift

+ 1 - 1
Tests/DownloadTests.swift

@@ -63,7 +63,7 @@ class AlamofireDownloadResponseTestCase: XCTestCase {
                 XCTAssertEqual(filteredContents.count, 1, "should have one file in Documents")
 
                 let file = filteredContents.first as NSURL
-                XCTAssertEqual(file.lastPathComponent!, "\(suggestedFilename)", "filename should bsuggestedFilenameines)")
+                XCTAssertEqual(file.lastPathComponent!, "\(suggestedFilename)", "filename should be \(suggestedFilename)")
 
                 if let data = NSData(contentsOfURL: file) {
                     XCTAssertGreaterThan(data.length, 0, "data length should be non-zero")