Skip to content

Commit

Permalink
remove unused import, add comments about skipped test
Browse files Browse the repository at this point in the history
  • Loading branch information
dizcology authored and dandhlee committed Jul 24, 2023
1 parent 01a1c84 commit 6b1b37f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bigquery-reservation/snippets/reservation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import pytest
import test_utils.prefixer

from . import reservation_create, reservation_delete, reservation_update
from . import reservation_create, reservation_delete

# Reservation IDs are limited to 64 characters.
reservation_prefixer = test_utils.prefixer.Prefixer(
Expand Down Expand Up @@ -68,6 +68,9 @@ def test_reservation_samples(
out, _ = capsys.readouterr()
assert f"Created reservation: {reservation.name}" in out

# The test for reservation_update is skipped for now, since without
# capacity commitment we cannot decrease the capacity within one hour.

# slot_capacity = 50
# reservation = reservation_update.update_reservation(
# project_id, location, reservation_id, slot_capacity, transport
Expand Down

0 comments on commit 6b1b37f

Please sign in to comment.