todo, impl changing sender via @name but not test

This commit is contained in:
Bel LaPointe
2022-01-11 23:34:53 -05:00
parent 9d855e0f30
commit 7ec4ce79dd
3 changed files with 17 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ func TestTimeMarshal(t *testing.T) {
t.Fatal(string(b))
} else if err := json.Unmarshal(b, &other); err != nil {
t.Fatal(err)
} else if now.Unix() != other.Unix() {
t.Fatal(other.Unix(), now.Unix())
} else if now.Unix() != other.Get().Unix() {
t.Fatal(other.Get().Unix(), now.Unix())
}
}