style(lint): fix lint issues

This commit is contained in:
hannahhoward 2020-11-09 16:35:17 -08:00
parent 7519bdde42
commit b010ac21d3

View File

@ -185,7 +185,15 @@ func TestGetCurrentDealInfo(t *testing.T) {
expectedError: xerrors.Errorf("Deal proposals did not match"),
},
}
for testCase, data := range testCases {
runTestCase := func(testCase string, data struct {
searchMessageLookup *api.MsgLookup
searchMessageErr error
marketDeals map[abi.DealID]*api.MarketDeal
publishCid *cid.Cid
expectedDealID abi.DealID
expectedMarketDeal *api.MarketDeal
expectedError error
}) {
t.Run(testCase, func(t *testing.T) {
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
@ -211,6 +219,9 @@ func TestGetCurrentDealInfo(t *testing.T) {
}
})
}
for testCase, data := range testCases {
runTestCase(testCase, data)
}
}
type marketDealKey struct {