diff options
| author | EuAndreh <eu@euandre.org> | 2024-07-17 11:45:31 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-07-17 11:45:31 -0300 |
| commit | 5193809342c63078dc17bb142ad50beae34b9331 (patch) | |
| tree | 978daaaaf38c2afabae201d0a40d2a6cb0da9f0f /tests | |
| parent | src/lib.go, tests/lib_test.go: Tweak indentation (diff) | |
| download | papod-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.go | 6 |
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 } |
