Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run gofmt + fix capitalization errors from previous PRs #7420

Merged
merged 2 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ func ResourceApigeeFlowhook() *schema.Resource {
"continue_on_error": {
Type: schema.TypeBool,
ForceNew: true,
Optional: true,
Default: true,
Optional: true,
Default: true,
Description: `Flag that specifies whether execution should continue if the flow hook throws an exception. Set to true to continue execution. Set to false to stop execution if the flow hook throws an exception. Defaults to true.`,
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ func TestAccSpannerInstance_update(t *testing.T) {

func TestAccSpannerInstance_virtualUpdate(t *testing.T) {
// Randomness
skipIfVcr(t)
SkipIfVcr(t)
t.Parallel()

dName := fmt.Sprintf("spanner-dname1-%s", randString(t, 10))
vcrTest(t, resource.TestCase{
dName := fmt.Sprintf("spanner-dname1-%s", RandString(t, 10))
VcrTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Providers: TestAccProviders,
CheckDestroy: testAccCheckSpannerInstanceDestroyProducer(t),
Steps: []resource.TestStep{
{
Expand Down