Commit 3d960ccc authored by Ross Smith II's avatar Ross Smith II

go fmt

parent e422d45f
...@@ -46,7 +46,7 @@ func TestStepCreateFloppy(t *testing.T) { ...@@ -46,7 +46,7 @@ func TestStepCreateFloppy(t *testing.T) {
ext := ".tmp" ext := ".tmp"
for i := 0; i < expected; i++ { 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]) _, err := os.Create(files[i])
if err != nil { if err != nil {
...@@ -108,7 +108,7 @@ func xxxTestStepCreateFloppy_missing(t *testing.T) { ...@@ -108,7 +108,7 @@ func xxxTestStepCreateFloppy_missing(t *testing.T) {
prefix := "missing" prefix := "missing"
for i := 0; i < count; i++ { 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{ lists := [][]string{
...@@ -153,7 +153,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) { ...@@ -153,7 +153,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
prefix := "notfound" prefix := "notfound"
for i := 0; i < count; i++ { 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{ lists := [][]string{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment