Missing handlers but there we goddamn GO

Former-commit-id: 2505146a54acaf18eadfdebf1dd2720889aef795
This commit is contained in:
bel
2019-06-22 16:23:27 -06:00
parent 093d468f87
commit 35b3ff2c2d
24 changed files with 216 additions and 37 deletions

View File

@@ -31,7 +31,7 @@ func TestItemCompare(t *testing.T) {
i, _ := NewItem("iCompare", time.Second)
j, _ := NewItem("jCompare", 10*time.Second)
if c := i.Compare(j); c != -1 {
if c := i.Compare(j); c != 1 {
t.Fatal(c)
}
@@ -43,7 +43,7 @@ func TestItemCompare(t *testing.T) {
i, _ = NewItem("iCompare", 10*time.Second)
j, _ = NewItem("jCompare", time.Second)
if c := i.Compare(j); c != 1 {
if c := i.Compare(j); c != -1 {
t.Fatal(c)
}
}