diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-17 13:36:26 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-17 13:37:50 +0200 |
commit | eaef314936ca80e5280528244bdb6d233098b392 (patch) | |
tree | 3037e861e5baa599ab31e133b82286f1ffbb9545 /misc | |
parent | e076931aa547a2e6538adf4dba3b42426a2d43fd (diff) | |
download | git-bug-eaef314936ca80e5280528244bdb6d233098b392.tar.gz |
create_random_bugs: create less bugs
Diffstat (limited to 'misc')
-rw-r--r-- | misc/create_random_bugs.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/create_random_bugs.go b/misc/create_random_bugs.go index d764aa0c..1ca20aee 100644 --- a/misc/create_random_bugs.go +++ b/misc/create_random_bugs.go @@ -14,10 +14,10 @@ import ( "github.com/icrowley/fake" ) -const bugNumber = 40 +const bugNumber = 15 const personNumber = 5 const minOp = 3 -const maxOp = 40 +const maxOp = 20 type opsGenerator func(*bug.Bug, bug.Person) |