File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import (
18
18
"github.com/onsi/gomega/gexec"
19
19
)
20
20
21
- func TestArguements (t * testing.T ) {
21
+ func TestArguments (t * testing.T ) {
22
22
23
23
testCases := map [string ]struct {
24
24
exitCode int
@@ -167,7 +167,7 @@ func TestTemplating(t *testing.T) {
167
167
_ , err = os .Stat (chkfile )
168
168
gt .Expect (err ).NotTo (HaveOccurred ())
169
169
170
- // check that the file has the exepected contents
170
+ // check that the file has the expected contents
171
171
connectionFileContents , err := os .ReadFile (chkfile )
172
172
gt .Expect (err ).NotTo (HaveOccurred ())
173
173
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func BookkeeperDBPath(rootFSPath string) string {
50
50
return filepath .Join (rootFSPath , "bookkeeper" )
51
51
}
52
52
53
- // SnapshotsTempDirPath returns the dir path that is used temporarily during the genration or import of the snapshots for a ledger
53
+ // SnapshotsTempDirPath returns the dir path that is used temporarily during the generation or import of the snapshots for a ledger
54
54
func SnapshotsTempDirPath (snapshotRootDir string ) string {
55
55
return filepath .Join (snapshotRootDir , "temp" )
56
56
}
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ override gRPC option is specified to force this endpoint address to be interpret
316
316
func newGrpcConnection() *grpc.ClientConn {
317
317
certificatePEM, err := os.ReadFile(tlsCertPath)
318
318
if err != nil {
319
- panic(fmt.Errorf("failed to read TLS certifcate file: %w", err))
319
+ panic(fmt.Errorf("failed to read TLS certificate file: %w", err))
320
320
}
321
321
322
322
certificate, err := identity.CertificateFromPEM(certificatePEM)
You can’t perform that action at this time.
0 commit comments