Skip to content

Commit 6b1b37f

Browse files
dizcologydandhlee
authored andcommitted
remove unused import, add comments about skipped test
1 parent 01a1c84 commit 6b1b37f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bigquery-reservation/snippets/reservation_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pytest
1818
import test_utils.prefixer
1919

20-
from . import reservation_create, reservation_delete, reservation_update
20+
from . import reservation_create, reservation_delete
2121

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

71+
# The test for reservation_update is skipped for now, since without
72+
# capacity commitment we cannot decrease the capacity within one hour.
73+
7174
# slot_capacity = 50
7275
# reservation = reservation_update.update_reservation(
7376
# project_id, location, reservation_id, slot_capacity, transport

0 commit comments

Comments
 (0)