1
0
Fork 0
forked from forgejo/forgejo

Load label ID in NewLabels (#2045)

This commit is contained in:
Ethan Koenig 2017-06-25 02:15:09 -04:00 committed by Lunny Xiao
parent f64c232953
commit 2559a34b97
4 changed files with 25 additions and 6 deletions

View file

@ -52,7 +52,7 @@ func TestNewLabels(t *testing.T) {
}
assert.NoError(t, NewLabels(labels...))
for _, label := range labels {
AssertExistsAndLoadBean(t, label)
AssertExistsAndLoadBean(t, label, Cond("id = ?", label.ID))
}
CheckConsistencyFor(t, &Label{}, &Repository{})
}