Skip to content

Commit

Permalink
Fix vercel test
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed May 10, 2024
1 parent 1a8302d commit 5adef74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/producer/vercel/vercel/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ def test_run_many() -> None:
result = vercel.core.run()

assert result[0]['name'] == 'vercel'
assert result[0]['slug'] == 'chroma-feedback-test-bitbucket'
assert result[0]['slug']
assert result[0]['status'] in get_args(Status)

assert result[1]['name'] == 'vercel'
assert result[1]['slug'] == 'chroma-feedback-test-gitlab'
assert result[1]['slug']
assert result[1]['status'] in get_args(Status)
else:
pytest.skip('VERCEL_TOKEN is not defined')

0 comments on commit 5adef74

Please sign in to comment.