You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At 82cad83, tests testCpuUse and testCpuUseNI are ignored and do not pass due to missing support for global variable with initialization. For example, in go-lisa/go-testcases/cc/cpu-use.go:
package main
import (
"bytes"
"encoding/json"
"fmt"
"time"
"github.com/hyperledger/fabric-chaincode-go/shim"
pb "github.com/hyperledger/fabric-protos-go/peer"
)
//SimpleChaincode is the artifact of teh chaincode
type SimpleChaincode struct {
}
var nameSpace string = "org.cpu-use.Usage" // global variable with initializaiton
...
The text was updated successfully, but these errors were encountered:
At 82cad83, tests
testCpuUse
andtestCpuUseNI
are ignored and do not pass due to missing support for global variable with initialization. For example, ingo-lisa/go-testcases/cc/cpu-use.go
:The text was updated successfully, but these errors were encountered: