summaryrefslogtreecommitdiff
path: root/tests/lib_test.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-07-17 11:45:31 -0300
committerEuAndreh <eu@euandre.org>2024-07-17 11:45:31 -0300
commit5193809342c63078dc17bb142ad50beae34b9331 (patch)
tree978daaaaf38c2afabae201d0a40d2a6cb0da9f0f /tests/lib_test.go
parentsrc/lib.go, tests/lib_test.go: Tweak indentation (diff)
downloadpapod-5193809342c63078dc17bb142ad50beae34b9331.tar.gz
papod-5193809342c63078dc17bb142ad50beae34b9331.tar.xz
src/lib.go, tests/lib_test.go: Normaline function argument declarations
Diffstat (limited to '')
-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
}