diff --git a/circle.yml b/circle.yml index 5c059a6e4..2c3095c8b 100644 --- a/circle.yml +++ b/circle.yml @@ -175,7 +175,7 @@ jobs: - run: name: Install Go command: | - choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my + choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my --force -y go version (Get-Command go).Path [Environment]::SetEnvironmentVariable( diff --git a/compiler/natives/src/crypto/internal/boring/bbig/big.go b/compiler/natives/src/crypto/internal/boring/bbig/big.go index 30ffe1fcd..3a726ba3c 100644 --- a/compiler/natives/src/crypto/internal/boring/bbig/big.go +++ b/compiler/natives/src/crypto/internal/boring/bbig/big.go @@ -33,7 +33,7 @@ func Dec(b boring.BigInt) *big.Int { return new(big.Int) } // Replacing original which uses unsafe: - //x := unsafe.Slice((*big.Word)(&b[0]), len(b)) + // x := unsafe.Slice((*big.Word)(&b[0]), len(b)) x := make([]big.Word, len(b)) for i, w := range b { x[i] = big.Word(w) diff --git a/compiler/natives/src/crypto/internal/nistec/nistec_test.go b/compiler/natives/src/crypto/internal/nistec/nistec_test.go index f5f79398e..d755e7ec3 100644 --- a/compiler/natives/src/crypto/internal/nistec/nistec_test.go +++ b/compiler/natives/src/crypto/internal/nistec/nistec_test.go @@ -4,10 +4,9 @@ package nistec_test import ( - "testing" - "crypto/elliptic" "crypto/internal/nistec" + "testing" ) func TestAllocations(t *testing.T) {