We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e8bac commit aeb6891Copy full SHA for aeb6891
vision/cloud-client/src/test/java/com/example/vision/DetectIT.java
@@ -124,7 +124,9 @@ public void testLandmarksGcs() throws Exception {
124
@Test
125
public void testLandmarksUrl() throws Exception {
126
// Act
127
- String[] args = {"landmarks", "http://wheresgus.com/landmark.jpg"};
+ String URI = "https://storage-download.googleapis.com/" +
128
+ BUCKET + "/vision/landmark.jpg";
129
+ String[] args = {"landmarks", URI};
130
Detect.argsHelper(args, out);
131
132
// Assert
0 commit comments