Commit cc9c360f authored by Steven Allen's avatar Steven Allen

fix: go1.9 monotonic time (for real this time)

* Also, test on go 1.9
parent 0d8cb324
......@@ -8,6 +8,7 @@ env:
go:
- 1.8
- 1.9
install: true
......
......@@ -97,8 +97,8 @@ func TestProvidersSerialization(t *testing.T) {
t.Fatal("failed to load set correctly")
}
if pt2 != lt2 {
t.Fatal("time wasnt serialized correctly")
if !pt2.Equal(lt2) {
t.Fatalf("time wasnt serialized correctly, %v != %v", pt1, lt1)
}
}
......
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