Update uptime_test.go

This commit is contained in:
Oskar 2021-10-24 14:36:47 +02:00 committed by GitHub
parent 83442d44bf
commit bd19c54610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -6,5 +6,6 @@ import (
)
func TestCheckUptime(T *testing.T) {
Uptime(time.Date(2016, 6, 2, 1, 1, 1, 1, time.UTC))
uptime := Uptime(time.Date(2016, 6, 2, 1, 1, 1, 1, time.UTC))
fmt.Println(uptime)
}