Skip to content

Commit f345207

Browse files
committed
point to specific URIs for video labels snippets
1 parent d84af2d commit f345207

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

video/cloud-client/labels/labels_test.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,13 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
import os
18-
1917
import pytest
2018

2119
import labels
2220

2321

24-
BUCKET = os.environ['CLOUD_STORAGE_BUCKET']
25-
LABELS_FILE_PATH = '/video/cat.mp4'
26-
27-
2822
@pytest.mark.slow
2923
def test_feline_video_labels(capsys):
30-
labels.analyze_labels(
31-
'gs://{}{}'.format(BUCKET, LABELS_FILE_PATH))
24+
labels.analyze_labels('gs://demomaker/cat.mp4')
3225
out, _ = capsys.readouterr()
3326
assert 'Video label description: cat' in out

0 commit comments

Comments
 (0)