Skip to content

Commit

Permalink
test: remove unnecessary fmt.sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsddr committed Jun 20, 2024
1 parent e9adf9c commit c8aa93b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awsmt/resource_channel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ func errorChannel() string {
}

func hlsChannelNoManifestWindowSeconds() string {
return fmt.Sprintf(`
return `
resource "awsmt_channel" "test" {
name = "test"
channel_state = "STOPPED"
Expand All @@ -275,7 +275,7 @@ func hlsChannelNoManifestWindowSeconds() string {
output "channel_out" {
value = data.awsmt_channel.test
}
`)
`
}

func hlsChannel(mw_s string) string {
Expand Down

0 comments on commit c8aa93b

Please sign in to comment.