removing splited files after test

This commit is contained in:
h3yEllex 2017-10-24 12:22:30 +03:00
parent 3f606bb87d
commit 33de3066d5
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package main
import (
"os"
"testing"
)
@ -9,5 +10,7 @@ func TestSplitFile(t *testing.T) {
if err != nil {
t.Error(err)
}
os.Remove("README.md.0")
os.Remove("README.md.1")
os.Remove("README.md.2")
}