diff --git a/terraform/graph_builder_test.go b/terraform/graph_builder_test.go index 4811d7866..0f66947fc 100644 --- a/terraform/graph_builder_test.go +++ b/terraform/graph_builder_test.go @@ -136,22 +136,6 @@ func TestBuiltinGraphBuilder_cbdDepNonCbd_errorsWhenVerbose(t *testing.T) { } } -func TestBuiltinGraphBuilder_fuck(t *testing.T) { - b := &BuiltinGraphBuilder{ - Providers: []string{"aws"}, - Root: testModule(t, "validate-module-pc-inherit-unused"), - Validate: true, - } - - g, err := b.Build(RootModulePath) - if err != nil { - t.Fatalf("err: %s", err) - } - - println(g.String()) - t.FailNow() -} - /* TODO: This exposes a really bad bug we need to fix after we merge the f-ast-branch. This bug still exists in master.