Compare commits

...

1 Commits

Author SHA1 Message Date
Ricky aa1735a6b5 made the countyByZipcode test not random 2019-07-20 16:02:48 +10:00
@@ -110,6 +110,6 @@ public class AddressTest extends AbstractFakerTest {
@Test
public void testCountyByZipCode() {
faker = new Faker(new Locale("en-US"));
assertThat(faker.address().countyByZipCode(faker.address().zipCodeByState(faker.address().stateAbbr())), not(isEmptyOrNullString()));
assertThat(faker.address().countyByZipCode("47732"), not(isEmptyOrNullString()));
}
}