Skip to content

Commit

Permalink
remove unnecessary sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Dec 21, 2022
1 parent ab3e455 commit 156af32
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vault/data_source_raft_autopilot_state_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package vault

import (
"fmt"
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
Expand Down Expand Up @@ -37,11 +36,11 @@ func TestAccDataSourceRaftAutoPilotState(t *testing.T) {
}

func testDataSourceRaftAutoPilotStateConfig() string {
return fmt.Sprintf(`
return `
resource "vault_raft_autopilot" "test" {
}
data "vault_raft_autopilot_state" "test" {
}
`)
`
}

0 comments on commit 156af32

Please sign in to comment.