Skip to content

Commit 803fe24

Browse files
committed
reset failing tests
1 parent 5c207ec commit 803fe24

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

provisioner/terraform/resources_test.go

-3
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ func TestConvertResources(t *testing.T) {
182182
DisplayName: "app1",
183183
// Subdomain defaults to false if unspecified.
184184
Subdomain: false,
185-
OpenIn: "slim-window",
186185
},
187186
{
188187
Slug: "app2",
@@ -193,13 +192,11 @@ func TestConvertResources(t *testing.T) {
193192
Interval: 5,
194193
Threshold: 6,
195194
},
196-
OpenIn: "window",
197195
},
198196
{
199197
Slug: "app3",
200198
DisplayName: "app3",
201199
Subdomain: false,
202-
OpenIn: "tab",
203200
},
204201
},
205202
Auth: &proto.Agent_Token{},

provisioner/terraform/testdata/multiple-apps/multiple-apps.tf

-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ resource "coder_app" "app1" {
1818
slug = "app1"
1919
# subdomain should default to false.
2020
# subdomain = false
21-
open_in = "slim-window"
2221
}
2322

2423
# app2 tests that subdomaincan be true, and that healthchecks work.
@@ -31,15 +30,13 @@ resource "coder_app" "app2" {
3130
interval = 5
3231
threshold = 6
3332
}
34-
open_in = "window"
3533
}
3634

3735
# app3 tests that subdomain can explicitly be false.
3836
resource "coder_app" "app3" {
3937
agent_id = coder_agent.dev1.id
4038
slug = "app3"
4139
subdomain = false
42-
open_in = "tab"
4340
}
4441

4542
resource "null_resource" "dev" {

0 commit comments

Comments
 (0)