Skip to content

Commit

Permalink
unit tests: fixed a couple of leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
JimRoepcke committed Jul 26, 2011
1 parent 0ccff93 commit 8aa48b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions HLDeferred/Tests/HLDeferredConcurrentDataSourceTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ - (void) testStart
[self waitForStatus: kGHUnitWaitStatusSuccess timeout: 5.0];
GHAssertTrue([ds succeeded], @"concurrent data source wasn't executed");
GHAssertTrue(success, @"callback didn't run");
[ds release]; ds = nil;
}

@end
Expand Down
1 change: 1 addition & 0 deletions HLDeferred/Tests/HLDeferredDataSourceTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ - (void) testStart
[self waitForStatus: kGHUnitWaitStatusSuccess timeout: 5.0];
GHAssertTrue([ds succeeded], @"data source wasn't executed");
GHAssertTrue(success, @"callback didn't run");
[ds release]; ds = nil;
}

@end
Expand Down

0 comments on commit 8aa48b6

Please sign in to comment.