From 7e711772def7a5d711500c3c6c37ea41b57ac598 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 4 Jun 2017 00:10:14 +0200 Subject: Change `ParseXML()` name to `ModuleParseXML()` Prefix the function name to make it more obvious what it relates to. Since this function lives in the `timetask` module and will be used in contexts that have nothing to do with Modules. --- timetask/module_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'timetask/module_test.go') diff --git a/timetask/module_test.go b/timetask/module_test.go index 6dcfa94..cee87c5 100644 --- a/timetask/module_test.go +++ b/timetask/module_test.go @@ -20,8 +20,8 @@ const modules_xml = ` ` -func TestParseXML(t *testing.T) { - modules, err := ParseXML(modules_xml) +func TestModuleParseXML(t *testing.T) { + modules, err := ModuleParseXML(modules_xml) if err != nil { t.Error(err) } -- cgit v1.2.3