diff options
author | Teddy Wing | 2017-06-04 00:10:14 +0200 |
---|---|---|
committer | Teddy Wing | 2017-06-04 00:10:14 +0200 |
commit | 7e711772def7a5d711500c3c6c37ea41b57ac598 (patch) | |
tree | c3c57053359c5442be14ae70bc65f65a3ef4d90a /timetask/module_test.go | |
parent | c113de965dea24c44023a9aabcff7f8ee1f0caa0 (diff) | |
download | timetasker-7e711772def7a5d711500c3c6c37ea41b57ac598.tar.bz2 |
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.
Diffstat (limited to 'timetask/module_test.go')
-rw-r--r-- | timetask/module_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 = `<?xml version="1.0" encoding="UTF-8" ?> </response> </ajax-response>` -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) } |