diff --git a/bot.go b/bot.go index 3c7f953..1b3e988 100644 --- a/bot.go +++ b/bot.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "io" - "io/ioutil" "mime/multipart" "net/http" "net/url" @@ -151,7 +150,7 @@ func (bot *BotAPI) decodeAPIResponse(responseBody io.Reader, resp *APIResponse) } // if debug, read response body - data, err := ioutil.ReadAll(responseBody) + data, err := io.ReadAll(responseBody) if err != nil { return nil, err } diff --git a/bot_test.go b/bot_test.go index 1b954b5..7abd790 100644 --- a/bot_test.go +++ b/bot_test.go @@ -1,7 +1,6 @@ package tgbotapi import ( - "io/ioutil" "net/http" "os" "testing" @@ -139,7 +138,7 @@ func TestSendWithNewPhoto(t *testing.T) { func TestSendWithNewPhotoWithFileBytes(t *testing.T) { bot, _ := getBot(t) - data, _ := ioutil.ReadFile("tests/image.jpg") + data, _ := os.ReadFile("tests/image.jpg") b := FileBytes{Name: "image.jpg", Bytes: data} msg := NewPhoto(ChatID, b) @@ -195,7 +194,7 @@ func TestSendNewPhotoToChannel(t *testing.T) { func TestSendNewPhotoToChannelFileBytes(t *testing.T) { bot, _ := getBot(t) - data, _ := ioutil.ReadFile("tests/image.jpg") + data, _ := os.ReadFile("tests/image.jpg") b := FileBytes{Name: "image.jpg", Bytes: data} msg := NewPhotoToChannel(Channel, b)