Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes http test to point to better hosting #663

Merged
merged 6 commits into from
May 15, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Style nit
  • Loading branch information
gguuss committed May 12, 2017
commit b0a6f514c94e1e3a300bf163053c199db9056f14
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ public void testLandmarksGcs() throws Exception {
@Test
public void testLandmarksUrl() throws Exception {
// Act
String URI = "https://storage-download.googleapis.com/" +
BUCKET + "/vision/landmark.jpg";
String[] args = {"landmarks", URI};
String uri = "https://storage-download.googleapis.com/"
+ BUCKET + "/vision/landmark.jpg";
String[] args = {"landmarks", uri};
Detect.argsHelper(args, out);

// Assert
Expand Down