Commit 87748213 authored by Lucia Lopuchova's avatar Lucia Lopuchova
Browse files

Fix price threshold

parent 39529c12
......@@ -61,7 +61,7 @@ public class MarketEventInitializer extends DomainInitializerImpl {
MarketLocation location = new MarketLocation();
location.setName(faker.rickAndMorty().location());
location.setAddress(faker.address().streetAddress());
location.setPriceInCents(faker.number().numberBetween(100000L, 10000000L));
location.setPriceInCents(faker.number().numberBetween(100000L, 1000000L));
locationService.create(location);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment