Closed ChaosInTheCRD closed 1 year ago
cc @jkjell I think this was introduced when you make the changes for the data provider.
Strange part is I seem to remember fixing this at one point 🤔 . Guess I either imagined that or never got it into main.
Ah. I see why this is a problem.
I am replacing go-witness
in my go.mod
with my local module. This was causing the error above with tests. Of course, this repository follows version 1.17
of go-witness
, which still has this field as type time.Time
.
This will need to be fixed eventually, but not yet.
When running
make test
I noticed that they were failing due to an error caused by theExpires
field not acceptingtime.Time
variables. I don't have full context but changing it to the below fixed the tests. Worth getting eyes from someone responsible for these tests in the past for sanity 😅.