Skip to content

Commit

Permalink
refactor(suite): use TestCase.Assert helper for consistency with with…
Browse files Browse the repository at this point in the history
… Load
  • Loading branch information
dominicbarnes committed Nov 1, 2024
1 parent a5b56dd commit fe4aceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func RunTestSuite[Input any, Output any](t tester, dir string, fn func(t *testin

output := fn(t, tc, input)

Assert(t, tc.Dir, &output)
tc.Assert(t, &output)
},
}

Expand Down

0 comments on commit fe4aceb

Please sign in to comment.