aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/compiler/compiler_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-04 19:52:51 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-04 20:25:22 +0200
commit8c64b078d1c954972b9f0132a753cdcec1b80d9b (patch)
treef6213a794bf72ccb3e38f6892d7fb229b2b78414 /pkg/compiler/compiler_test.go
parentb06c1bd324d3aff0f132381727c85940bcf93b2f (diff)
pkg/compiler: detect resources without ctors
Fixes #217
Diffstat (limited to 'pkg/compiler/compiler_test.go')
-rw-r--r--pkg/compiler/compiler_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/compiler/compiler_test.go b/pkg/compiler/compiler_test.go
index 40450f6a4..130c1fe5d 100644
--- a/pkg/compiler/compiler_test.go
+++ b/pkg/compiler/compiler_test.go
@@ -37,7 +37,7 @@ func TestErrors(t *testing.T) {
"C1": 1,
"C2": 2,
}
- for _, name := range []string{"errors.txt", "recursion.txt", "len.txt"} {
+ for _, name := range []string{"errors.txt", "errors2.txt"} {
name := name
t.Run(name, func(t *testing.T) {
em := ast.NewErrorMatcher(t, filepath.Join("testdata", name))