Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 7ae3cd4

Browse files
committed
chore: Update expiration time for test
1 parent e9fbcc1 commit 7ae3cd4

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5980,9 +5980,11 @@ public void testSnapshotTableCopyJob() throws InterruptedException {
59805980

59815981
@Test
59825982
public void testCopyJobWithLabelsAndExpTime() throws InterruptedException {
5983-
String destExpiryTime = "2025-12-31T23:59:59.999999999Z";
5984-
String sourceTableName = "test_copy_job_source_table_label";
5985-
String destinationTableName = "test_copy_job_destination_table_label";
5983+
String destExpiryTime = "2099-12-31T23:59:59.999999999Z";
5984+
String sourceTableName =
5985+
"test_copy_job_source_table_label" + UUID.randomUUID().toString().substring(0, 8);
5986+
String destinationTableName =
5987+
"test_copy_job_destination_table_label" + UUID.randomUUID().toString().substring(0, 8);
59865988
Map<String, String> labels = ImmutableMap.of("test_job_name", "test_copy_job");
59875989
TableId sourceTable = TableId.of(DATASET, sourceTableName);
59885990
StandardTableDefinition tableDefinition = StandardTableDefinition.of(TABLE_SCHEMA);

0 commit comments

Comments
 (0)