File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java-vision/google-cloud-vision/src/test/java/com/google/cloud/vision/it Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ public void detectSafeSearchTest() throws IOException {
437437 requestAnnotatedImage ("wakeupcat.jpg" , Type .SAFE_SEARCH_DETECTION , false );
438438 SafeSearchAnnotation annotation = res .getSafeSearchAnnotation ();
439439 assertEquals (Likelihood .VERY_UNLIKELY , annotation .getAdult ());
440- assertEquals (Likelihood .VERY_UNLIKELY , annotation .getRacy ());
440+ assertEquals (Likelihood .UNLIKELY , annotation .getRacy ());
441441 }
442442
443443 @ Test
@@ -457,7 +457,7 @@ public void detectSafeSearchGcsTest() throws IOException {
457457 requestAnnotatedImage ("label/wakeupcat.jpg" , Type .SAFE_SEARCH_DETECTION , true );
458458 SafeSearchAnnotation annotation = res .getSafeSearchAnnotation ();
459459 assertEquals (Likelihood .VERY_UNLIKELY , annotation .getAdult ());
460- assertEquals (Likelihood .VERY_UNLIKELY , annotation .getRacy ());
460+ assertEquals (Likelihood .UNLIKELY , annotation .getRacy ());
461461 }
462462
463463 @ Test
You can’t perform that action at this time.
0 commit comments