From 8b60a6bb63be9b6183adaab82905817921cdff82 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 17 Nov 2020 10:13:33 +0100 Subject: [PATCH] Implement review suggestions --- profile/module_test.go | 7 ------- profile/profile.go | 3 +-- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 profile/module_test.go diff --git a/profile/module_test.go b/profile/module_test.go deleted file mode 100644 index 06bb7f8d..00000000 --- a/profile/module_test.go +++ /dev/null @@ -1,7 +0,0 @@ -package profile - -/* -func TestMain(m *testing.M) { - pmtesting.TestMain(m, module) -} -*/ diff --git a/profile/profile.go b/profile/profile.go index 665d6ff8..b1798b07 100644 --- a/profile/profile.go +++ b/profile/profile.go @@ -10,14 +10,13 @@ import ( "sync/atomic" "time" - "github.com/safing/portbase/utils/osdetail" - "github.com/tevino/abool" "github.com/safing/portbase/config" "github.com/safing/portbase/database/record" "github.com/safing/portbase/log" "github.com/safing/portbase/utils" + "github.com/safing/portbase/utils/osdetail" "github.com/safing/portmaster/intel/filterlists" "github.com/safing/portmaster/profile/endpoints" )