summaryrefslogtreecommitdiff
path: root/tests/lib_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib_test.go')
-rw-r--r--tests/lib_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib_test.go b/tests/lib_test.go
index 2e872ec..5ca6fce 100644
--- a/tests/lib_test.go
+++ b/tests/lib_test.go
@@ -65,8 +65,6 @@ func TestSetLoggerOutput(t *testing.T) {
err := json.Unmarshal([]byte(s), &e)
if err != nil {
t.Fail()
- // gobang.Mmain()
- // gobang.Main()
}
if e.msg != "the message" {
t.Fail()
@@ -233,7 +231,9 @@ func TestWithHMACSHA256(t *testing.T) {
type scryptTestVector struct {
password string
salt string
- N, r, p int
+ N int
+ r int
+ p int
output []byte
}