Skip to content

Commit 890b44e

Browse files
authored
fixes vision tests (GoogleCloudPlatform#951)
1 parent 41ae58e commit 890b44e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vision/test/visionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function testLogoCommand()
152152
{
153153
$path = __DIR__ . '/data/logo.jpg';
154154
$output = $this->runCommand('logo', ['path' => $path]);
155-
$this->assertContains('google', $output);
155+
$this->assertContains('Google', $output);
156156
}
157157

158158
public function testLogoCommandGcs()
@@ -161,7 +161,7 @@ public function testLogoCommandGcs()
161161

162162
$path = 'gs://' . $bucketName . '/vision/logo.jpg';
163163
$output = $this->runCommand('logo', ['path' => $path]);
164-
$this->assertContains('google', $output);
164+
$this->assertContains('Google', $output);
165165
}
166166

167167
public function testLocalizeObjectCommand()

0 commit comments

Comments
 (0)