1 package tzdata 2 3 import "testing" 4 5 func TestDownloadOldNames(t *testing.T) { 6 _, err := DownloadOldNames() 7 if err != nil { 8 t.Errorf("error: %v", err) 9 } 10 } 11
View as plain text