Skip to content

Commit

Permalink
chore: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
d-strobel committed Oct 16, 2023
1 parent a8cb4e4 commit a1152ca
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions connection/ssh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,6 @@ import (
)

func TestNewSSHClient(t *testing.T) {
// t.Run("ValidConfig", func(t *testing.T) {

// config := &SSHConfig{
// SSHHost: os.Getenv("GOWINDOWS_TEST_SSH_HOST"),
// SSHPort: 22,
// SSHUsername: os.Getenv("GOWINDOWS_TEST_SSH_USERNAME"),
// SSHPassword: os.Getenv("GOWINDOWS_TEST_SSH_PASSWORD"),
// }

// client, err := newSSHClient(config)
// if err != nil {
// t.Errorf("Expected no error, but got %v", err)
// }
// if client == nil {
// t.Error("Expected a non-nil SSH client, but got nil")
// }

// })

t.Run("InvalidConfig", func(t *testing.T) {
// Test case with missing required fields
config := &SSHConfig{}
Expand Down

0 comments on commit a1152ca

Please sign in to comment.