Skip to content

Commit dc930ea

Browse files
committed
removed print
1 parent 33650d1 commit dc930ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Chapter 16/myProject/Tests/AppApiTests/AppApiTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,14 @@ final class AppApiTests: XCTestCase {
5454
guard let response = response as? HTTPURLResponse else {
5555
throw HTTPError.invalidResponse
5656
}
57-
print(response.statusCode)
5857
guard 200...299 ~= response.statusCode else {
5958
throw HTTPError.invalidStatusCode(response.statusCode)
6059
}
6160

6261
let categories = try JSONDecoder().decode([Blog.Category.List].self, from: data)
6362
XCTAssertFalse(categories.isEmpty)
6463
}
64+
65+
6566
}
6667

0 commit comments

Comments
 (0)