Skip to content

Commit

Permalink
chore: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
davenewza committed Feb 18, 2025
1 parent 7f4f00b commit 94b3450
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions schema/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ func TestValidation(t *testing.T) {
testCases, err := os.ReadDir(dir)
require.NoError(t, err)

for i, tc := range testCases {
if i > 0 {
break
}
for _, tc := range testCases {
testCase := tc
if testCase.IsDir() {
t.Errorf("errors test data directory should only contain keel schema files - directory found: %s", testCase.Name())
Expand Down

0 comments on commit 94b3450

Please sign in to comment.