-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uncommented tests and fixed the errors that arised. Excluded the "_de…
…cl.go" files from the linter
- Loading branch information
1 parent
1f8da36
commit 16a0920
Showing
3 changed files
with
7 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -246,3 +246,4 @@ issues: | |
- linters: | ||
- govet | ||
text: "shadow: declaration of \"err\" shadows declaration" | ||
- path: ".*_decl.go" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
package test | ||
|
||
/* | ||
import ( | ||
"testing" | ||
|
||
bls "github.com/drand/kyber-bls12381" | ||
bls "go.dedis.ch/kyber/v3/pairing/circl_bls12381" | ||
sign "go.dedis.ch/kyber/v3/sign/bls" | ||
) | ||
|
||
func TestBLS12381(t *testing.T) { | ||
suite := bls.NewBLS12381Suite() | ||
suite := bls.NewSuiteBLS12381() | ||
scheme := sign.NewSchemeOnG1(suite) | ||
SchemeTesting(t, scheme) | ||
} | ||
*/ |