forked from forgejo/forgejo
Fix issue updated_unix bug (#2204)
This commit is contained in:
parent
5f37944dff
commit
a27863b6d1
5 changed files with 73 additions and 0 deletions
|
@ -92,3 +92,9 @@ func AssertSuccessfulInsert(t *testing.T, beans ...interface{}) {
|
|||
func AssertCount(t *testing.T, bean interface{}, expected interface{}) {
|
||||
assert.EqualValues(t, expected, GetCount(t, bean))
|
||||
}
|
||||
|
||||
// AssertInt64InRange assert value is in range [low, high]
|
||||
func AssertInt64InRange(t *testing.T, low, high, value int64) {
|
||||
assert.True(t, value >= low && value <= high,
|
||||
"Expected value in range [%d, %d], found %d", low, high, value)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue