From da3aeca72005f675d9e553e43fd0b6c29dc81187 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Mon, 6 Apr 2015 17:21:22 -0700 Subject: [PATCH] Fix a few more imports --- plugins/system/ps/disk/disk_darwin.go | 2 +- plugins/system/ps/disk/disk_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/system/ps/disk/disk_darwin.go b/plugins/system/ps/disk/disk_darwin.go index 3aa85c89a..f9ebc2a27 100644 --- a/plugins/system/ps/disk/disk_darwin.go +++ b/plugins/system/ps/disk/disk_darwin.go @@ -6,7 +6,7 @@ import ( "syscall" "unsafe" - common "github.com/shirou/gopsutil/common" + "github.com/influxdb/tivan/plugins/system/ps/common" ) func DiskPartitions(all bool) ([]DiskPartitionStat, error) { diff --git a/plugins/system/ps/disk/disk_test.go b/plugins/system/ps/disk/disk_test.go index 9ac9eb9b9..6ed9b891a 100644 --- a/plugins/system/ps/disk/disk_test.go +++ b/plugins/system/ps/disk/disk_test.go @@ -5,7 +5,7 @@ import ( "runtime" "testing" - "github.com/shirou/gopsutil/common" + "github.com/influxdb/tivan/plugins/system/ps/common" ) func TestDisk_usage(t *testing.T) {