Skip to content

Commit

Permalink
Fix compile errors in tests target
Browse files Browse the repository at this point in the history
  • Loading branch information
cargath committed Oct 29, 2016
1 parent ae602a5 commit 18c2711
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/CharacterTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CharacterTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = CharacterDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("CharacterTests", forBundle: Bundle(for: CharacterTests.self)))
dataWrapper = CharacterDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "CharacterTests", forBundle: Bundle(for: CharacterTests.self)))
}

override func tearDown() {
Expand Down
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/ComicTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ComicTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = ComicDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("ComicTests", forBundle: Bundle(for: ComicTests.self)))
dataWrapper = ComicDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "ComicTests", forBundle: Bundle(for: ComicTests.self)))
}

override func tearDown() {
Expand Down
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/CreatorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CreatorTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = CreatorDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("CreatorTests", forBundle: Bundle(for: CreatorTests.self)))
dataWrapper = CreatorDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "CreatorTests", forBundle: Bundle(for: CreatorTests.self)))
}

override func tearDown() {
Expand Down
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/EventTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class EventTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = EventDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("EventTests", forBundle: Bundle(for: EventTests.self)))
dataWrapper = EventDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "EventTests", forBundle: Bundle(for: EventTests.self)))
}

override func tearDown() {
Expand Down
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/SeriesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SeriesTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = SeriesDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("SeriesTests", forBundle: Bundle(for: SeriesTests.self)))
dataWrapper = SeriesDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "SeriesTests", forBundle: Bundle(for: SeriesTests.self)))
}

override func tearDown() {
Expand Down
2 changes: 1 addition & 1 deletion MarvelKit/MarvelKitTests/StoryTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class StoryTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
dataWrapper = StoryDataWrapper(jsonObject: JSONSerialization.JSONObjectNamed("StoryTests", forBundle: Bundle(for: StoryTests.self)))
dataWrapper = StoryDataWrapper(JSONObject: JSONSerialization.JSONObject(named: "StoryTests", forBundle: Bundle(for: StoryTests.self)))
}

override func tearDown() {
Expand Down

0 comments on commit 18c2711

Please sign in to comment.