1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00

GoFmt fixes

This commit is contained in:
Lukas Lueg 2014-08-15 19:18:30 +02:00
parent 90ffa84856
commit fdf48b0e4a
2 changed files with 6 additions and 6 deletions

View File

@ -8,11 +8,11 @@ package gopsutil
import (
"bufio"
"errors"
"os"
"reflect"
"strconv"
"strings"
"errors"
)
var NotImplementedError = errors.New("not implemented yet")

View File

@ -10,11 +10,11 @@ func TestGetDockerIDList(t *testing.T) {
// If there is not docker environment, this test always fail.
// not tested here
/*
_, err := GetDockerIDList()
if err != nil {
t.Errorf("error %v", err)
}
*/
_, err := GetDockerIDList()
if err != nil {
t.Errorf("error %v", err)
}
*/
}
func TestCgroupCPU(t *testing.T) {