Skip to content

Commit

Permalink
Use video_path fixture (#2363)
Browse files Browse the repository at this point in the history
  • Loading branch information
anguillanneuf committed Aug 27, 2019
1 parent 03840af commit 2e09356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions video/cloud-client/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 2e09356

Please sign in to comment.