diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-11-05 15:40:54 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-05 15:43:14 -0800 |
commit | 7caefd68df06062d2c0a3547132f1d25af49af22 (patch) | |
tree | 719475b183383a8f0e3dab9d61947020e5b16aac /tools/parsers/go_parser_test.go | |
parent | c47f8afe2334c1395a2acd9ebf5191aa4554907c (diff) |
Internal Change
PiperOrigin-RevId: 340941898
Diffstat (limited to 'tools/parsers/go_parser_test.go')
-rw-r--r-- | tools/parsers/go_parser_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/parsers/go_parser_test.go b/tools/parsers/go_parser_test.go index 0aa1152a2..f0737d46b 100644 --- a/tools/parsers/go_parser_test.go +++ b/tools/parsers/go_parser_test.go @@ -94,7 +94,7 @@ func TestParseLine(t *testing.T) { for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { - got, err := parseLine(tc.data, false) + got, err := parseLine(tc.data) if err != nil { t.Fatalf("parseLine failed with: %v", err) } |