Skip to content

Commit

Permalink
fix(deps): latest strongoapp
Browse files Browse the repository at this point in the history
  • Loading branch information
trakhimenok committed Dec 21, 2023
1 parent 305c20e commit 77e9fea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion botsfw/botsdal/dal_bot_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ func TestGetBotUser(t *testing.T) {
}{
{name: "empty", shouldPanic: true},
}
ctx := context.Background()
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.shouldPanic {
Expand All @@ -33,7 +34,7 @@ func TestGetBotUser(t *testing.T) {
}()
}
var tx dal.ReadwriteTransaction
botUser, err := GetBotUser(nil, tx, tt.args.platform, tt.args.botID, tt.args.botUserID, func() botsfwmodels.BotUserData {
botUser, err := GetBotUser(ctx, tx, tt.args.platform, tt.args.botID, tt.args.botUserID, func() botsfwmodels.BotUserData {
return nil
})
tt.checkResult(botUser, err)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require (
github.com/stretchr/testify v1.8.4
github.com/strongo/gamp v0.0.1
github.com/strongo/i18n v0.0.4
github.com/strongo/strongoapp v0.10.0
github.com/strongo/strongoapp v0.11.0
)

require (
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ github.com/strongo/strongoapp v0.9.1 h1:M3JqRZtqftTHGqnekW3ncNYYqLv2B1weye7yhPIG
github.com/strongo/strongoapp v0.9.1/go.mod h1:UWRe4rYG7val1PRumvd+V1TbCHmckfHr3DQ+OzvYnqo=
github.com/strongo/strongoapp v0.10.0 h1:HWB3UgaagtIr1UJxZ0oKGSdVPVw8Qfhq+/u50Rknqfw=
github.com/strongo/strongoapp v0.10.0/go.mod h1:UWRe4rYG7val1PRumvd+V1TbCHmckfHr3DQ+OzvYnqo=
github.com/strongo/strongoapp v0.11.0 h1:KxGKpMNhJ92uTzGFx1GW0ppGII9b9huImM2kiQzqzSc=
github.com/strongo/strongoapp v0.11.0/go.mod h1:rOUznvRLPp77EVSCnTJ++ZLRODhdoALfs83PUJnzP0E=
github.com/strongo/validation v0.0.6 h1:RskXD45ILagVW3jmuKUiq7WshE4kmoQEiUbgfigqHzw=
github.com/strongo/validation v0.0.6/go.mod h1:V4Nu8b8CPsLNwYLKmMHN2ghkoabOpiOW8NNcUczuCWE=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
Expand Down

0 comments on commit 77e9fea

Please sign in to comment.