Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaBernstein committed May 20, 2023
1 parent 4f9abd4 commit 6d442e6
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 53 deletions.
8 changes: 4 additions & 4 deletions bot/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,10 @@ func TestTimezoneOffsetForAutomaticDate(t *testing.T) {
// Create simple tx and fill it completely
bc.commandCreateSimpleTx(&botTest.MockContext{M: &tb.Message{Chat: chat}})
tx := bc.State.txStates[12345]
tx.Input(&tb.Message{Text: "17.34"}) // amount
tx.Input(&tb.Message{Text: "Buy something in the grocery store"}) // description
tx.Input(&tb.Message{Text: "Assets:Wallet"}) // from
bc.handleTextState(&botTest.MockContext{&tb.Message{Chat: chat, Text: "Expenses:Groceries"}}) // to (via handleTextState)
tx.Input(&tb.Message{Text: "17.34"}) // amount
tx.Input(&tb.Message{Text: "Buy something in the grocery store"}) // description
tx.Input(&tb.Message{Text: "Assets:Wallet"}) // from
bc.handleTextState(&botTest.MockContext{M: &tb.Message{Chat: chat, Text: "Expenses:Groceries"}}) // to (via handleTextState)

// After the first tx is done, send some command
m := &botTest.MockContext{M: &tb.Message{Chat: chat, Sender: &tb.User{ID: chat.ID}}}
Expand Down
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ go 1.17

require (
github.com/fatih/structs v1.1.0
github.com/go-co-op/gocron v1.19.0
github.com/go-co-op/gocron v1.27.1
gopkg.in/telebot.v3 v3.1.3
)

require (
github.com/bytedance/sonic v1.8.7 // indirect
github.com/bytedance/sonic v1.8.8 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.12.0 // indirect
github.com/go-playground/validator/v10 v10.13.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/leodido/go-urn v1.2.3 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
Expand All @@ -31,20 +31,20 @@ require (
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.8.0 // indirect
golang.org/x/tools v0.9.1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/uint128 v1.3.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.22.3 // indirect
modernc.org/libc v1.22.6 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/opt v0.1.3 // indirect
Expand All @@ -57,7 +57,7 @@ require (
github.com/gin-contrib/cors v1.4.0
github.com/gin-gonic/gin v1.9.0
github.com/google/uuid v1.3.0
github.com/lib/pq v1.10.7
github.com/lib/pq v1.10.9
github.com/stretchr/testify v1.8.2
modernc.org/sqlite v1.21.1
modernc.org/sqlite v1.22.1
)
Loading

0 comments on commit 6d442e6

Please sign in to comment.