Skip to content

Commit

Permalink
(SZ-93) Modify test due to changes in Facebook library API
Browse files Browse the repository at this point in the history
  • Loading branch information
lynksant committed Sep 29, 2014
1 parent ff428ba commit ca070a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/com/facebook/MockResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ public MockResponse(Request request, HttpURLConnection connection, FacebookReque
}

public MockResponse(Request request, HttpURLConnection connection, GraphObject graphObject, boolean isFromCache) {
super(request, connection, graphObject, isFromCache);
super(request, connection, null, graphObject, isFromCache);
}

public MockResponse(Request request, HttpURLConnection connection, GraphObjectList<GraphObject> graphObjects, boolean isFromCache) {
super(request, connection, graphObjects, isFromCache);
super(request, connection, null, graphObjects, isFromCache);
}
}

0 comments on commit ca070a8

Please sign in to comment.