tests and fixes for fetcher, parser, retriever, converter, and repository; update cmd and watcher

This commit is contained in:
Ian Norden
2018-11-04 01:49:11 -05:00
parent 5307de2b97
commit e9dbd771e5
24 changed files with 958 additions and 75 deletions
+1 -2
View File
@@ -192,8 +192,7 @@ func (arguments Arguments) unpackIntoMap(v map[string]interface{}, marshalledVal
}
for i, arg := range arguments.NonIndexed() {
reflectValue := reflect.ValueOf(marshalledValues[i])
v[arg.Name] = reflectValue
v[arg.Name] = marshalledValues[i]
}
return nil