1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
diff --git a/testdata/benchmarks/data-throughput/main.go b/testdata/benchmarks/data-throughput/main.go
index bdedaec59b11b174f1e5cf56a4776018f281be9e..64c855bf1afb1b40c66686cccf1b941f607e21bc 100644
--- a/testdata/benchmarks/data-throughput/main.go
+++ b/testdata/benchmarks/data-throughput/main.go
@@ -4,7 +4,7 @@ import (
"bufio"
"os"
- yenc "git.sr.ht/~poldi1405/go-yenc/testdata/benchmarks"
+ yenc "benchmarks"
)
func main() {
diff --git a/testdata/benchmarks/go.mod b/testdata/benchmarks/go.mod
new file mode 100644
index 0000000000000000000000000000000000000000..6f06a09b52c8618c00e0ba247549acbe1b72ebc9
--- /dev/null
+++ b/testdata/benchmarks/go.mod
@@ -0,0 +1,3 @@
+module benchmarks
+
+go 1.19
|