fix lint errors.
This commit is contained in:
parent
45cd510da1
commit
4e659e30c5
@ -18,7 +18,7 @@ func TestProtocolCodenames(t *testing.T) {
|
|||||||
t.Fatal("expected breeze codename")
|
t.Fatal("expected breeze codename")
|
||||||
}
|
}
|
||||||
|
|
||||||
if height := abi.ChainEpoch(build.UpgradeActorsV2Height + 1); GetProtocolCodename(height) != "actorsv2" {
|
if height := build.UpgradeActorsV2Height + 1; GetProtocolCodename(height) != "actorsv2" {
|
||||||
t.Fatal("expected actorsv2 codename")
|
t.Fatal("expected actorsv2 codename")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ func executeTestVector(tv schema.TestVector) error {
|
|||||||
for _, v := range tv.Pre.Variants {
|
for _, v := range tv.Pre.Variants {
|
||||||
r := new(conformance.LogReporter)
|
r := new(conformance.LogReporter)
|
||||||
|
|
||||||
switch class := tv.Class; class {
|
switch class, v := tv.Class, v; class {
|
||||||
case "message":
|
case "message":
|
||||||
conformance.ExecuteMessageVector(r, &tv, &v)
|
conformance.ExecuteMessageVector(r, &tv, &v)
|
||||||
case "tipset":
|
case "tipset":
|
||||||
|
Loading…
Reference in New Issue
Block a user