Commit 3568e415 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 4f20f158
......@@ -474,10 +474,6 @@ func TestIntSets(t *testing.T) {
// kvdiff returns differens in between kv1 and kv2.
var DEL = "ø" // DEL means key deletion
//type kvdelta1 struct {
// k Key
// v string // DEL means delete
//}
func kvdiff(kv1, kv2 map[Key]string) map[Key]string {
delta := map[Key]string{}
keys := SetKey{}
......@@ -502,7 +498,6 @@ func kvdiff(kv1, kv2 map[Key]string) map[Key]string {
return delta
}
func TestKVDiff(t *testing.T) {
kv1 := map[Key]string{1:"a", 3:"c", 4:"d"}
kv2 := map[Key]string{1:"b", 4:"d", 5:"e"}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment