aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/ast/parser_test.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkg/ast/parser_test.go b/pkg/ast/parser_test.go
index 521078805..43587d7a3 100644
--- a/pkg/ast/parser_test.go
+++ b/pkg/ast/parser_test.go
@@ -42,12 +42,10 @@ func TestParseAll(t *testing.T) {
if len(top) != len(top2) {
t.Fatalf("formatting number of top level decls: %v/%v", len(top), len(top2))
}
- if false {
- // While sys files are not formatted, formatting in fact changes it.
- for i := range top {
- if !reflect.DeepEqual(top[i], top2[i]) {
- t.Fatalf("formatting changed code:\n%#v\nvs:\n%#v", top[i], top2[i])
- }
+ // While sys files are not formatted, formatting in fact changes it.
+ for i := range top {
+ if !reflect.DeepEqual(top[i], top2[i]) {
+ t.Fatalf("formatting changed code:\n%#v\nvs:\n%#v", top[i], top2[i])
}
}
}