feat: update find resource with linked memo amount (#1354)

* feat: update find resource with linked memo amount

* chore: remove unused test
This commit is contained in:
boojack
2023-03-15 00:04:52 +08:00
committed by GitHub
parent 28242d3268
commit 29f784cc20
3 changed files with 26 additions and 52 deletions

View File

@@ -1,21 +0,0 @@
package getter
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestGetImage(t *testing.T) {
tests := []struct {
urlStr string
}{
{
urlStr: "https://star-history.com/bytebase.webp",
},
}
for _, test := range tests {
_, err := GetImage(test.urlStr)
require.NoError(t, err)
}
}