mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Fix TestMinioStorageIterator skip message (#24765)
Followup to https://github.com/go-gitea/gitea/pull/24762, fix this message.
This commit is contained in:
parent
9dd13e84ca
commit
655c890cbd
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import (
|
||||||
|
|
||||||
func TestMinioStorageIterator(t *testing.T) {
|
func TestMinioStorageIterator(t *testing.T) {
|
||||||
if os.Getenv("CI") == "" {
|
if os.Getenv("CI") == "" {
|
||||||
t.Skip("minioStorage not present on CI")
|
t.Skip("minioStorage not present outside of CI")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
||||||
|
|
Loading…
Reference in a new issue