Skip to content

Commit e17bceb

Browse files
committed
fix more tests
1 parent 40d3dfe commit e17bceb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

enterprise/coderd/workspaces_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1480,8 +1480,8 @@ func TestWorkspaceTagsTerraform(t *testing.T) {
14801480
name: "tag variable",
14811481
provisionerTags: map[string]string{"foo": "bar"},
14821482
tfWorkspaceTags: `
1483-
variable "foo" {
1484-
default = "bar"
1483+
variable "foo" {
1484+
default = "bar"
14851485
}
14861486
data "coder_workspace_tags" "tags" {
14871487
tags = {
@@ -1493,8 +1493,8 @@ func TestWorkspaceTagsTerraform(t *testing.T) {
14931493
name: "tag param",
14941494
provisionerTags: map[string]string{"foo": "bar"},
14951495
tfWorkspaceTags: `
1496-
data "coder_parameter" "foo" {
1497-
name = "foo"
1496+
data "coder_parameter" "foo" {
1497+
name = "foo"
14981498
type = "string"
14991499
default = "bar"
15001500
}
@@ -1509,7 +1509,7 @@ func TestWorkspaceTagsTerraform(t *testing.T) {
15091509
provisionerTags: map[string]string{"foo": "bar"},
15101510
tfWorkspaceTags: `
15111511
variable "foo" {
1512-
type = "string"
1512+
type = string
15131513
default = "bar"
15141514
}
15151515
data "coder_parameter" "foo" {

0 commit comments

Comments
 (0)