diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-11-08 11:10:55 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-11-08 16:16:10 +0000 |
| commit | 4862372a57ee80af8186cd80f6c9c8f741a45e40 (patch) | |
| tree | ddb6c9bf0ec8bbb4f322c5baff19fc0379b6bd6b | |
| parent | 8892efd4a3951d24d2b42529045868f36fd32617 (diff) | |
vm/vm_test.go: allow duplicates
These duplicates improve test code readability.
It contributes to #4317 unblocking.
| -rw-r--r-- | vm/vm_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/vm_test.go b/vm/vm_test.go index 9c190cf50..d01e97310 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -92,6 +92,7 @@ type Test struct { Report *report.Report } +// nolint: goconst // "DIAGNOSE\n", "BUG: bad\n" and "other output\n" var tests = []*Test{ { Name: "program-exits-normally", |
