Skip to content

Commit

Permalink
fixup! Merge branch 'master' of github.com:tus/tusd into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Acconut committed Oct 10, 2022
1 parent 70ba0f5 commit aff352c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/handler/post_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,11 @@ func TestPost(t *testing.T) {
upload := NewMockFullUpload(ctrl)

gomock.InOrder(
store.EXPECT().NewUpload(context.Background(), FileInfo{
store.EXPECT().NewUpload(gomock.Any(), FileInfo{
Size: 300,
MetaData: map[string]string{},
}).Return(upload, nil),
upload.EXPECT().GetInfo(context.Background()).Return(FileInfo{
upload.EXPECT().GetInfo(gomock.Any()).Return(FileInfo{
ID: "foo",
Size: 300,
MetaData: map[string]string{},
Expand Down

0 comments on commit aff352c

Please sign in to comment.