Skip to content

Commit

Permalink
fix(deps): latest go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
trakhimenok committed Aug 20, 2024
1 parent 3bfddb1 commit 95e81d5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/bots-go-framework/bots-api-telegram

go 1.22.3

toolchain go1.22.6
go 1.23.0

require (
github.com/bots-go-framework/bots-go-core v0.0.2
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZV
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/strongo/logus v0.0.0-20240628225821-04cf45b5968f h1:U+ikeZnsuwnmzU0KKEo9W+DA899Sf5ZDKvuiHKDFHf8=
github.com/strongo/logus v0.0.0-20240628225821-04cf45b5968f/go.mod h1:sd8gjJklqGQAg+Q0mlP5MWgzguAuxR25YYFSkfVOPdc=
github.com/strongo/logus v0.2.0 h1:IbLupLW9WMIwjefJF+u9/Ajlaw6ysFuEeKQxOFX5tOE=
github.com/strongo/logus v0.2.0/go.mod h1:sd8gjJklqGQAg+Q0mlP5MWgzguAuxR25YYFSkfVOPdc=
github.com/technoweenie/multipartstreamer v1.0.1 h1:XRztA5MXiR1TIRHxH2uNxXxaIkKQDeX7m2XsSOlQEnM=
Expand Down
2 changes: 1 addition & 1 deletion tgbotapi/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestCommandWithCommand(t *testing.T) {
message := Message{Text: "/testcommand"}

if message.Command() != "testcommand" {
t.Fatalf("Expected `/testcommand`, got: " + message.Command())
t.Fatal("Expected `/testcommand`, got: " + message.Command())
}
}

Expand Down

0 comments on commit 95e81d5

Please sign in to comment.