TUN-3795: Removed errant test

This commit is contained in:
Igor Postelnik 2021-01-26 09:05:53 -06:00
parent 0df4f7dd24
commit d87bfcbe55
1 changed files with 0 additions and 14 deletions

View File

@ -2,7 +2,6 @@ package origin
import (
"context"
"fmt"
"testing"
"time"
)
@ -146,16 +145,3 @@ func TestBackoffRetryForever(t *testing.T) {
t.Fatalf("backoff returned %v instead of 8 seconds on fifth retry", duration)
}
}
func TestPrint(t *testing.T) {
local := time.Now()
fmt.Printf("Local = %s\n", local)
fmt.Printf("Local (kitchen) = %s\n", local.Format(time.Kitchen))
fmt.Printf("Local (RFC3339) = %s\n", local.Format(time.RFC3339))
fmt.Println()
utc := local.UTC()
fmt.Printf("UTC = %s\n", utc)
fmt.Printf("UTC (kitchen) = %s\n", utc.Format(time.Kitchen))
fmt.Printf("UTC (RFC3339) = %s\n", utc.Format(time.RFC3339))
}