Skip to content

Commit

Permalink
fix(dev): update tests for return value change
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtkeller committed Nov 2, 2024
1 parent 9208043 commit 2acc835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/e2e/dev_lint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestLintCommand(t *testing.T) {

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
validationResults := dev.DevLintCommand(tc.inputFiles)
validationResults := dev.DevLintCommand(tc.inputFiles, []string{})
for i, result := range validationResults {
if result.Valid != tc.valid[i] {
t.Errorf("Expected valid to be %v, but got %v", tc.valid[i], result.Valid)
Expand Down

0 comments on commit 2acc835

Please sign in to comment.