Skip to content

Commit 95edd3f

Browse files
committed
fix CI
1 parent d867acc commit 95edd3f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

legacy/builder/ctags/ctags_parser_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ func produceTags(t *testing.T, filename string) []*types.CTag {
3030
require.NoError(t, err)
3131

3232
parser := CTagsParser{}
33-
return parser.Parse(string(bytes), nil)
33+
tags, Arduifines := parser.Parse(string(bytes), nil)
34+
_ = Arduifines
35+
return tags
3436
}
3537

3638
func TestCTagsParserShouldListPrototypes(t *testing.T) {

0 commit comments

Comments
 (0)