Wrong function to convert int to string.

This commit is contained in:
Christopher Gerber 2016-02-04 16:18:57 -06:00
parent b75d561c56
commit e7711c31ea
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}