aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-04 17:42:42 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-04 17:42:42 -0500
commit014dccd167a20f063515ca6afd36601c8cf5830c (patch)
treecbbd39508f570fb7fff185bcfbe786b2e6772dde
parent0f049721c6ab5b12d9425f908d1ff8c6c71a82cf (diff)
downloadcvez-014dccd167a20f063515ca6afd36601c8cf5830c.tar.bz2
cvez-014dccd167a20f063515ca6afd36601c8cf5830c.zip
cpedict/cpedict_test.go: minor cleanups
-rw-r--r--cpedict/cpedict_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpedict/cpedict_test.go b/cpedict/cpedict_test.go
index eca0aeb..6c7c280 100644
--- a/cpedict/cpedict_test.go
+++ b/cpedict/cpedict_test.go
@@ -28,8 +28,9 @@ func TestDictionaryXMLUnmarshal(t *testing.T) {
// create xml decoder, decode xml
d := xml.NewDecoder(gz)
- var dict Dictionary
+ // decode xml, check for error
+ var dict Dictionary
if err := d.Decode(&dict); err != nil {
t.Error(err)
return