Skip to content

Commit

Permalink
Use video_path fixture [(#2363)](#2363)
Browse files Browse the repository at this point in the history
  • Loading branch information
anguillanneuf authored and danoscarmike committed Sep 30, 2020
1 parent 31c4a2c commit 5e2cade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions videointelligence/samples/analyze/beta_snippets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ def test_track_objects_gcs():


@pytest.mark.slow
def test_streaming_automl_classification(capsys, in_file):
def test_streaming_automl_classification(capsys, video_path):
project_id = os.environ['GCLOUD_PROJECT']
model_id = 'VCN6363999689846554624'
beta_snippets.streaming_automl_classification(
in_file, project_id, model_id)
video_path, project_id, model_id)
out, _ = capsys.readouterr()
assert 'brush_hair' in out

0 comments on commit 5e2cade

Please sign in to comment.