updated go report card issues
This commit is contained in:
parent
b87a297986
commit
a4d885e01d
@ -9,9 +9,11 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
d := &kvrepl.DB{PKV: true}
|
||||
d.KV1 = make(map[string]string)
|
||||
d.KV2 = make(map[string]string)
|
||||
d := &kvrepl.DB{
|
||||
KV1: map[string]string{},
|
||||
KV2: map[string]string{},
|
||||
PKV: true,
|
||||
}
|
||||
scanner := bufio.NewScanner(os.Stdin)
|
||||
for scanner.Scan() {
|
||||
v, err := kvrepl.Parse(scanner.Text(), d)
|
||||
|
@ -81,7 +81,7 @@ func TestSeries(t *testing.T) {
|
||||
"failed series:\n\tfailed to write",
|
||||
)
|
||||
}
|
||||
v, err := read([]string{"a"}, kv)
|
||||
v, _ := read([]string{"a"}, kv)
|
||||
if v != "b" {
|
||||
t.Errorf(
|
||||
"failed series:\n\texpected: %v\n\t actual: %v",
|
||||
@ -89,8 +89,8 @@ func TestSeries(t *testing.T) {
|
||||
v,
|
||||
)
|
||||
}
|
||||
err = del([]string{"a"}, kv)
|
||||
v, err = read([]string{"a"}, kv)
|
||||
_ = del([]string{"a"}, kv)
|
||||
v, _ = read([]string{"a"}, kv)
|
||||
if v != "" {
|
||||
t.Errorf(
|
||||
"failed series:\n\texpected: %v\n\t actual: %v",
|
||||
|
Loading…
Reference in New Issue
Block a user