diff options
author | Michael Muré <batolettre@gmail.com> | 2022-07-31 14:38:32 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-07-31 14:38:32 +0200 |
commit | d179b8b7ec7815ccac73e00f35f5cfbdc4ddbe2e (patch) | |
tree | d3faa7217cb287c7b20f2769f5c5808373aca63b /misc | |
parent | 3d454d9dc8ba2409046c0938618a70864e6eb8ef (diff) | |
download | git-bug-d179b8b7ec7815ccac73e00f35f5cfbdc4ddbe2e.tar.gz |
bug: fix an issue where Id would be used, then changed due to metadata
Diffstat (limited to 'misc')
-rw-r--r-- | misc/random_bugs/create_random_bugs.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/misc/random_bugs/create_random_bugs.go b/misc/random_bugs/create_random_bugs.go index a69918f4..a6f636ad 100644 --- a/misc/random_bugs/create_random_bugs.go +++ b/misc/random_bugs/create_random_bugs.go @@ -87,6 +87,7 @@ func generateRandomBugsWithSeed(opts Options, seed int64) []*bug.Bug { time.Now().Unix(), fake.Sentence(), paragraphs(), + nil, nil, ) if err != nil { @@ -143,19 +144,19 @@ func paragraphs() string { } func comment(b bug.Interface, p identity.Interface, timestamp int64) { - _, _ = bug.AddComment(b, p, timestamp, paragraphs()) + _, _ = bug.AddComment(b, p, timestamp, paragraphs(), nil, nil) } func title(b bug.Interface, p identity.Interface, timestamp int64) { - _, _ = bug.SetTitle(b, p, timestamp, fake.Sentence()) + _, _ = bug.SetTitle(b, p, timestamp, fake.Sentence(), nil) } func open(b bug.Interface, p identity.Interface, timestamp int64) { - _, _ = bug.Open(b, p, timestamp) + _, _ = bug.Open(b, p, timestamp, nil) } func close(b bug.Interface, p identity.Interface, timestamp int64) { - _, _ = bug.Close(b, p, timestamp) + _, _ = bug.Close(b, p, timestamp, nil) } var addedLabels []string @@ -182,5 +183,5 @@ func labels(b bug.Interface, p identity.Interface, timestamp int64) { // ignore error // if the randomisation produce no changes, no op // is added to the bug - _, _, _ = bug.ChangeLabels(b, p, timestamp, added, removed) + _, _, _ = bug.ChangeLabels(b, p, timestamp, added, removed, nil) } |