Removed magic number.

This commit is contained in:
Alan 2015-09-16 21:32:52 +01:00
parent 51dca28fe7
commit d0af12b1ee

View File

@ -84,7 +84,7 @@ public class CustomerDaoImplTest {
@Test
public void getNonExistinCustomerById() {
final int nonExistingId = 999;
final int nonExistingId = getNonExistingCustomerId();
assertNull(impl.getCustomerById(nonExistingId));
}