Wrong function to convert int to string.

pull/3143/head
Christopher Gerber 10 years ago
parent b75d561c56
commit e7711c31ea

@ -71,7 +71,7 @@ func TestAssumeRole(t *testing.T) {
func mockConfig(t *testing.T) string {
time := time.Now().UnixNano()
dir, err := ioutil.TempDir("", strconv.Itoa(time))
dir, err := ioutil.TempDir("", strconv.FormatInt(time, 10))
if err != nil {
t.Error(err)
}

Loading…
Cancel
Save