Skip to content

Commit

Permalink
Removed unneeded whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Wünsch committed Aug 26, 2015
1 parent 682d236 commit 8f91de5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions BoltsTests/AppLinkReturnToRefererViewTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,9 @@ - (void)testIncludesStatusBarResultsInLargerHeight {
BFAppLinkReturnToRefererView *view = [[BFAppLinkReturnToRefererView alloc] init];
view.refererAppLink = appLink;
view.includeStatusBarInSize = BFIncludeStatusBarInSizeNever;

CGSize sizeThatFitsNotIncludingStatusBar = [view sizeThatFits:CGSizeMake(100.0, 100.0)];

view.includeStatusBarInSize = BFIncludeStatusBarInSizeAlways;

CGSize sizeThatFitsIncludingStatusBar = [view sizeThatFits:CGSizeMake(100.0, 100.0)];

XCTAssert(sizeThatFitsIncludingStatusBar.height > sizeThatFitsNotIncludingStatusBar.height);
Expand All @@ -98,11 +96,9 @@ - (void)testNotIncludingStatusBarResultsInSmallerHeight {

BFAppLinkReturnToRefererView *view = [[BFAppLinkReturnToRefererView alloc] init];
view.refererAppLink = appLink;

CGSize sizeThatFitsIncludingStatusBar = [view sizeThatFits:CGSizeMake(100.0, 100.0)];

view.includeStatusBarInSize = BFIncludeStatusBarInSizeNever;

CGSize sizeThatFitsNotIncludingStatusBar = [view sizeThatFits:CGSizeMake(100.0, 100.0)];

XCTAssert(sizeThatFitsIncludingStatusBar.height > sizeThatFitsNotIncludingStatusBar.height);
Expand Down

0 comments on commit 8f91de5

Please sign in to comment.