Skip to content

Commit

Permalink
correct test names
Browse files Browse the repository at this point in the history
  • Loading branch information
dizcology committed Jan 12, 2018
1 parent 50b4100 commit 679b6a8
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 @@ -26,15 +26,15 @@


@pytest.mark.slow
def test_analyze_shots(capsys):
def test_face_bounding_boxes(capsys):
beta_snippets.face_bounding_boxes(
'gs://{}{}'.format(BUCKET, FACES_SHORT_FILE_PATH))
out, _ = capsys.readouterr()
assert 'top :' in out


@pytest.mark.slow
def test_analyze_explicit_content(capsys):
def test_face_emotions(capsys):
beta_snippets.face_emotions(
'gs://{}{}'.format(BUCKET, FACES_SHORT_FILE_PATH))
out, _ = capsys.readouterr()
Expand Down

0 comments on commit 679b6a8

Please sign in to comment.