diff --git a/wtftests/checklist_item_test.go b/checklisttests/checklist_item_test.go similarity index 80% rename from wtftests/checklist_item_test.go rename to checklisttests/checklist_item_test.go index 799f4f55..8337dc04 100644 --- a/wtftests/checklist_item_test.go +++ b/checklisttests/checklist_item_test.go @@ -4,7 +4,8 @@ import ( "testing" "github.com/olebedev/config" - . "github.com/senorprogrammer/wtf/wtf" + . "github.com/senorprogrammer/wtf/checklist" + "github.com/senorprogrammer/wtf/wtf" . "github.com/stretchr/testify/assert" ) @@ -38,5 +39,5 @@ func TestToggle(t *testing.T) { /* -------------------- helpers -------------------- */ func loadConfig() { - Config, _ = config.ParseYamlFile("../_sample_configs/simple_config.yml") + wtf.Config, _ = config.ParseYamlFile("../_sample_configs/simple_config.yml") }