Skip to content

Commit

Permalink
modded parser test to use const for num of entites in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
kgoins committed Apr 12, 2021
1 parent 48d7aa4 commit ac1b88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ldif_parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func TestBuildEntities(t *testing.T) {

err := parser.BuildEntities(entities, done)
assert.Nil(t, err)
assert.Equal(t, 3, counter.c)
assert.Equal(t, NUMENTITIES, counter.c)
})
}

Expand Down

0 comments on commit ac1b88a

Please sign in to comment.