Codebase list golang-check.v1 / f74cd47
Merge branch 'v1' of github.com:go-check/check into v1 Gustavo Niemeyer 9 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
145145 panic("Couldn't create temporary directory: " + err.Error())
146146 }
147147 }
148 result := path.Join(td.path, strconv.Itoa(td.counter))
148 result := filepath.Join(td.path, strconv.Itoa(td.counter))
149149 td.counter += 1
150150 return result
151151 }