Browse Source

test: typo

pull/7/head
fatedier 9 years ago
parent
commit
5c6f03afcf
  1. 6
      src/frp/utils/pcrypto/pcrypto_test.go

6
src/frp/utils/pcrypto/pcrypto_test.go

@ -25,7 +25,7 @@ func TestEncrypto(t *testing.T) {
pp.Init([]byte("Hana"))
res, err := pp.Encrypto([]byte("Just One Test!"))
if err != nil {
t.Fatalf(err)
t.Fatal(err)
}
fmt.Printf("[%x]\n", res)
@ -36,12 +36,12 @@ func TestDecrypto(t *testing.T) {
pp.Init([]byte("Hana"))
res, err := pp.Encrypto([]byte("Just One Test!"))
if err != nil {
t.Fatalf(err)
t.Fatal(err)
}
res, err = pp.Decrypto(res)
if err != nil {
t.Fatalf(err)
t.Fatal(err)
}
fmt.Printf("[%s]\n", string(res))

Loading…
Cancel
Save