Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro committed Jan 17, 2025
1 parent 11af61d commit 77f1ccf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions internal/fsutil/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ type createTest struct {
error string
}

// touch
var createTests = []createTest{{
summary: "Create a file and its parent directory",
options: fsutil.CreateOptions{
Expand Down
1 change: 1 addition & 0 deletions internal/fsutil/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ func (s *S) SetUpTest(c *C) {
fsutil.SetLogger(c)
}

// touch
func (s *S) TearDownTest(c *C) {
fsutil.SetDebug(false)
fsutil.SetLogger(nil)
Expand Down
1 change: 1 addition & 0 deletions internal/jsonwall/jsonwall.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
// }
package jsonwall

//touch
import (
"bytes"
"encoding/json"
Expand Down
1 change: 1 addition & 0 deletions internal/pgputil/openpgp.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/crypto/openpgp/packet"
)

// touch
// DecodeKeys decodes public and private key packets from armored data.
func DecodeKeys(armoredData []byte) (pubKeys []*packet.PublicKey, privKeys []*packet.PrivateKey, err error) {
block, err := armor.Decode(bytes.NewReader(armoredData))
Expand Down
2 changes: 2 additions & 0 deletions internal/strdist/export_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package strdist

var GlobCost = globCost

//touch
1 change: 1 addition & 0 deletions internal/strdist/strdist.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ func (cv CostInt) String() string {
return fmt.Sprint(int64(cv))
}

// touch
const Inhibit = 1<<63 - 1

type Cost struct {
Expand Down

0 comments on commit 77f1ccf

Please sign in to comment.