diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-02-23 19:38:09 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-02-24 12:47:23 +0100 |
| commit | 2b3ed821a493b8936c8bacfa6f8b4f1c90a00855 (patch) | |
| tree | 7446ea8118e1e1a3d698dc17c85eb91d10ef0c68 /pkg | |
| parent | 5e3180302022fcbbe14cc59fbd2c2aeb1682f3df (diff) | |
pkg/stats/pvalue.go: allow deprecated module usage
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/stats/pvalue.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/stats/pvalue.go b/pkg/stats/pvalue.go index cb8c3bada..9f413f5aa 100644 --- a/pkg/stats/pvalue.go +++ b/pkg/stats/pvalue.go @@ -3,7 +3,8 @@ package stats -import "golang.org/x/perf/benchstat" +// TODO: I didn't find the substitution as of Feb 2023. Let's keep it as is while it works. +import "golang.org/x/perf/benchstat" // nolint:all // Mann-Whitney U test. func UTest(old, new *Sample) (pval float64, err error) { |
