This commit is contained in:
Ross Smith II 2014-04-29 12:29:15 -07:00
parent e422d45f92
commit 3d960ccc69
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ func TestStepCreateFloppy(t *testing.T) {
ext := ".tmp"
for i := 0; i < expected; i++ {
files[i] = path.Join(dir, prefix + strconv.Itoa(i) + ext)
files[i] = path.Join(dir, prefix+strconv.Itoa(i)+ext)
_, err := os.Create(files[i])
if err != nil {
@ -108,7 +108,7 @@ func xxxTestStepCreateFloppy_missing(t *testing.T) {
prefix := "missing"
for i := 0; i < count; i++ {
files[i] = path.Join(dir, prefix + strconv.Itoa(i))
files[i] = path.Join(dir, prefix+strconv.Itoa(i))
}
lists := [][]string{
@ -153,7 +153,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
prefix := "notfound"
for i := 0; i < count; i++ {
files[i] = path.Join(dir, prefix + strconv.Itoa(i))
files[i] = path.Join(dir, prefix+strconv.Itoa(i))
}
lists := [][]string{