Closed lucix-aws closed 3 weeks ago
runtime.Version() may have extra data after the semver string that tests weren't accounting for (they were not normalizing it in the "expect" input, this fixes that)
runtime.Version()
LGTM, just 2 nits
t.Error("User-Agent did not match expected")
Can we change the error message to
t.Error("User-Agent %v did not match expected %v", ua[0], c.Expect)
Fixed, merge on CI pass.
runtime.Version()
may have extra data after the semver string that tests weren't accounting for (they were not normalizing it in the "expect" input, this fixes that)