Skip to content

Commit

Permalink
skip the new validation tests for VCR
Browse files Browse the repository at this point in the history
  • Loading branch information
wj-chen committed Feb 21, 2024
1 parent 3ad7c2e commit ff265b4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,8 @@ func TestAccBigQueryDataset_storageBillModel(t *testing.T) {

func TestAccBigQueryDataset_invalidCharacterInID(t *testing.T) {
t.Parallel()
// Not an acceptance test.
acctest.SkipIfVcr(t)

datasetID := fmt.Sprintf("tf_test_%s-with-hyphens", acctest.RandString(t, 10))

Expand All @@ -348,6 +350,8 @@ func TestAccBigQueryDataset_invalidCharacterInID(t *testing.T) {

func TestAccBigQueryDataset_invalidLongID(t *testing.T) {
t.Parallel()
// Not an acceptance test.
acctest.SkipIfVcr(t)

datasetSuffix := acctest.RandString(t, 10)
datasetID := fmt.Sprintf("tf_test_%s", strings.Repeat(datasetSuffix, 200))
Expand Down

0 comments on commit ff265b4

Please sign in to comment.