Skip to content

Commit

Permalink
fix: typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr authored and notrepo05 committed Jul 20, 2023
1 parent bfba910 commit cb8096e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/test/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ func configureSession(ctx context.Context, logger *log.Logger, configuration Con
runErrC <- s.Run(ctx, func(ctx context.Context, proto string, meta map[string][]string) (net.Conn, error) {
conn, err := dockerDaemon.DialHijack(ctx, "/session", proto, meta)
if err != nil {
return nil, fmt.Errorf("session hyjack error: %w", err)
return nil, fmt.Errorf("session hijack error: %w", err)
}
return conn, nil
})
Expand Down

0 comments on commit cb8096e

Please sign in to comment.