1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
This commit is contained in:
WAKAYAMA Shirou 2017-03-15 23:32:55 +09:00
parent 30ebb9ca3a
commit bad1ce0748

View File

@ -23,7 +23,7 @@ func TestParseDmesgBoot(t *testing.T) {
{"2cpu_4core.txt", 2, 4},
}
for _, tt := range cpuTests {
v, num, err := parseDmesgBoot(filepath.Join("testdatak", "freebsd", tt.file))
v, num, err := parseDmesgBoot(filepath.Join("testdata", "freebsd", tt.file))
if err != nil {
t.Errorf("parseDmesgBoot failed(%s), %v", tt.file, err)
}