Skip to content

Commit

Permalink
add verbose for test
Browse files Browse the repository at this point in the history
  • Loading branch information
linyows committed Oct 14, 2023
1 parent fec549a commit a035f39
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ func TestIntegration(t *testing.T) {
specifiedDstIP = ip
specifiedDstPort = smtpPort
w := &Server{
Addr: ip,
Port: warpPort,
log: log.New(&warpLog, "", log.Ldate|log.Ltime|log.Lmicroseconds),
Addr: ip,
Port: warpPort,
Verbose: true,
log: log.New(&warpLog, "", log.Ldate|log.Ltime|log.Lmicroseconds),
}
if err := w.Start(); err != nil {
t.Errorf("warp raised error: %s", err)
Expand Down

0 comments on commit a035f39

Please sign in to comment.