Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Michal Čížek
flea-market-manager
Commits
87748213
Commit
87748213
authored
May 18, 2022
by
Lucia Lopuchova
Browse files
Fix price threshold
parent
39529c12
Changes
1
Show whitespace changes
Inline
Side-by-side
backend/flea-market-manager-initializer/src/main/java/cz/fi/muni/pa165/flea/market/manager/initializers/MarketEventInitializer.java
View file @
87748213
...
...
@@ -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
,
1000000
0
L
));
location
.
setPriceInCents
(
faker
.
number
().
numberBetween
(
100000L
,
1000000L
));
locationService
.
create
(
location
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment