Skip to content

Commit 559c128

Browse files
committed
fix: bad import path
1 parent d8d4fd0 commit 559c128

10 files changed

Lines changed: 10 additions & 16 deletions

File tree

core/test/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"context"
66
"testing"
77

8-
httpcache "github.com/TheBigRoomXXL/httpcache/core"
8+
httpcache "pkg.lovergne.dev/httpcache/core"
99
)
1010

1111
// Cache excercises a httpcache.Cache implementation.

core/test/test_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package test_test
33
import (
44
"testing"
55

6-
httpcache "github.com/TheBigRoomXXL/httpcache/core"
7-
"github.com/TheBigRoomXXL/httpcache/core/test"
6+
httpcache "pkg.lovergne.dev/httpcache/core"
7+
"pkg.lovergne.dev/httpcache/core/test"
88
)
99

1010
func TestMemoryCache(t *testing.T) {

diskv/diskv_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"os"
55
"testing"
66

7-
"github.com/TheBigRoomXXL/httpcache/core/test"
87
"github.com/peterbourgon/diskv/v3"
8+
"pkg.lovergne.dev/httpcache/core/test"
99
)
1010

1111
func TestDiskCache(t *testing.T) {

diskv/go.mod

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
module pkg.lovergne.dev/httpcache/diskv
22

33
go 1.24.9
4-
5-
require (
6-
pkg.lovergne.dev/httpcache/core v0.1.0-beta-6
7-
github.com/peterbourgon/diskv/v3 v3.0.1
8-
)
9-
10-
require github.com/google/btree v1.0.0 // indirect

go.work.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
22
pkg.lovergne.dev/httpcache/core v0.1.0-beta-4/go.mod h1:I2A9c2qGjJpALbZUgVDWCk5OH6HxP1swQwQR91C9u6E=
3+
pkg.lovergne.dev/httpcache/core v0.1.0-beta-7/go.mod h1:CiUuGEzokald+Awa8A2Q3q6yi4ujo7F3sO4XZwY7deI=

memcache/memcache_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/bradfitz/gomemcache/memcache"
88

9-
"github.com/TheBigRoomXXL/httpcache/core/test"
9+
"pkg.lovergne.dev/httpcache/core/test"
1010
)
1111

1212
const testServer = "localhost:11211"

otter/otter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package otter
33
import (
44
"context"
55

6-
httpcache "github.com/TheBigRoomXXL/httpcache/core"
76
"github.com/maypok86/otter/v2"
7+
httpcache "pkg.lovergne.dev/httpcache/core"
88
)
99

1010
// cache is an implementation of httpcache.Cache that caches responses in memory with Otter

otter/otter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package otter
33
import (
44
"testing"
55

6-
"github.com/TheBigRoomXXL/httpcache/core/test"
76
"github.com/maypok86/otter/v2"
7+
"pkg.lovergne.dev/httpcache/core/test"
88
)
99

1010
func TestOtterCache(t *testing.T) {

redis/redis.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ package redis
44
import (
55
"context"
66

7-
httpcache "github.com/TheBigRoomXXL/httpcache/core"
87
"github.com/gomodule/redigo/redis"
8+
httpcache "pkg.lovergne.dev/httpcache/core"
99
)
1010

1111
// cache is an implementation of httpcache.Cache that caches responses in a

redis/redis_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package redis
33
import (
44
"testing"
55

6-
"github.com/TheBigRoomXXL/httpcache/core/test"
76
"github.com/gomodule/redigo/redis"
7+
"pkg.lovergne.dev/httpcache/core/test"
88
)
99

1010
func TestRedisCache(t *testing.T) {

0 commit comments

Comments
 (0)