Skip to content

Commit

Permalink
fixup! fix test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
coadler committed Jul 12, 2024
1 parent 59ec6b0 commit 2fe2281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/user_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ resource "coderd_user" "test" {
if value == nil {
return "null"
}
return fmt.Sprintf(`"%s"`, *value)
return fmt.Sprintf("%q", *value)
case *bool:
if value == nil {
return "null"
Expand Down

0 comments on commit 2fe2281

Please sign in to comment.