Skip to content

Commit

Permalink
Fix for indetations on XCTest Objective-C.
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Jul 2, 2018
1 parent 87173c2 commit 773d169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ - (void)setUp
___VARIABLE_viperModuleName___Router *router = [___VARIABLE_viperModuleName___Router new];
self.view = (___VARIABLE_viperModuleName___ViewController *) [___VARIABLE_viperModuleName___Router createModule];
self.interactor = [[___VARIABLE_viperModuleName___Interactor alloc] init];
self.presenter = [[___VARIABLE_viperModuleName___Presenter alloc] initWithInterface:view
interactor:interactor
router:router];
self.presenter = [[___VARIABLE_viperModuleName___Presenter alloc] initWithInterface:view interactor:interactor router:router];
self.view.presenter = presenter;
self.interactor.output = presenter;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ - (void)setUp
___VARIABLE_viperModuleName___Router *router = [[___VARIABLE_viperModuleName___Router alloc] init];
self.view = (___VARIABLE_viperModuleName___ViewController *) [___VARIABLE_viperModuleName___Router createModule];
self.interactor = [[___VARIABLE_viperModuleName___Interactor alloc] init];
self.presenter = [[___VARIABLE_viperModuleName___Presenter alloc] initWithInterface:view
interactor:interactor
router:router];
self.presenter = [[___VARIABLE_viperModuleName___Presenter alloc] initWithInterface:view interactor:interactor router:router];
self.view.presenter = presenter;
self.interactor.output = presenter;
}
Expand Down

0 comments on commit 773d169

Please sign in to comment.