Skip to content

Commit

Permalink
Remove references to heroku images in unit tests
Browse files Browse the repository at this point in the history
Summary:
Changed the URLs in the unit tests, as well as in BooleanOG app
I used the URLs from posting the images to a group.
I'll change it if I get a response from the OG group.

Test Plan: Ran unit tests, BooleanOG

Reviewers: jacl

Reviewed By: jacl

CC: msdkexp@, platform-diffs@lists, bhiller

Differential Revision: https://phabricator.fb.com/D539775

Task ID: 1316084
  • Loading branch information
aydenw committed Aug 6, 2012
1 parent 926ecaa commit bb100b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/FBOpenGraphActionTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ - (void)testPostingSimpleOpenGraphAction {
action.tags = [NSArray arrayWithObject:userObject];

NSMutableDictionary *image = [NSDictionary dictionaryWithObjectsAndKeys:
@"http://fbsdkog.herokuapp.com/1.jpg", @"url",
@"https://sphotos-b.xx.fbcdn.net/hphotos-ash4/387972_10152013102225492_1756755651_n.jpg", @"url",
nil];
NSMutableArray *images = [NSArray arrayWithObject:image];
action.image = images;
Expand Down Expand Up @@ -128,7 +128,7 @@ - (void)testPostingUserGeneratedImageInAction
// the same goal (just checking that it was round-tripped).
NSDictionary *image = [NSDictionary dictionaryWithObjectsAndKeys:
@"false", @"user_generated",
@"http://fbsdkog.herokuapp.com/1.jpg", @"url",
@"https://sphotos-b.xx.fbcdn.net/hphotos-ash4/387972_10152013102225492_1756755651_n.jpg", @"url",
nil];
NSMutableArray *images = [NSArray arrayWithObject:image];
action.image = images;
Expand Down

0 comments on commit bb100b8

Please sign in to comment.