File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/src/test/java/com/ibm/watson/developer_cloud/alchemy/v1 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public class AlchemyVisionIT extends WatsonServiceTest {
4040 private static final String IMAGE_COLORADO = "src/test/resources/alchemy/colorado.jpg" ;
4141 private static final String IMAGE_COLORADO_URL = "https://raw.githubusercontent.com/watson-developer-cloud/"
4242 + "doc-tutorial-downloads/master/visual-recognition/colorado.jpg" ;
43- private static final String BABY_IMAGE = "https://visual-recognition-demo.mybluemix.net/images/samples/1 .jpg" ;
43+ private static final String VR_IMAGE = "https://visual-recognition-demo.mybluemix.net/images/samples/3 .jpg" ;
4444
4545 /** The html example. */
4646 private String htmlExample ;
@@ -160,7 +160,7 @@ public void testGetRankedImageKeywordsFromImageWithKnowledgeGraph() {
160160 */
161161 @ Test
162162 public void testGetRankedImageKeywordsFromURL () {
163- final ImageKeywords image = service .getImageKeywords (HttpUrl .parse (BABY_IMAGE ).url (), true , true ).execute ();
163+ final ImageKeywords image = service .getImageKeywords (HttpUrl .parse (VR_IMAGE ).url (), true , true ).execute ();
164164
165165 Assert .assertNotNull (image );
166166 }
@@ -181,7 +181,7 @@ public void testRecognizeFacesFromImage() {
181181 */
182182 @ Test
183183 public void testRecognizeFacesFromURL () {
184- final ImageFaces image = service .recognizeFaces (HttpUrl .parse (BABY_IMAGE ).url (), false ).execute ();
184+ final ImageFaces image = service .recognizeFaces (HttpUrl .parse (VR_IMAGE ).url (), false ).execute ();
185185
186186 Assert .assertNotNull (image );
187187 }
You can’t perform that action at this time.
0 commit comments