docs: consistency

This commit is contained in:
Manuel de la Peña
2025-08-29 13:10:23 +02:00
parent c46612ada5
commit 3ee2df9c26

View File

@@ -128,7 +128,7 @@ func mustStartExample(t testing.TB) *example.Container {
```go
func TestExampleStorageTCK(t *testing.T) {
// Create the TCK suite with proper generic type parameters
s, err := tck.New[*ExampleStorage, *ExampleDriver](
s, err := tck.New[*ExampleStorage, *ExampleDriver, *ExampleContainer](
context.Background(),
t,
&ExampleStorageTCK{},
@@ -290,7 +290,7 @@ func mustStartYourStorage(t testing.TB) *YourContainer {
}
func TestYourStorageTCK(t *testing.T) {
s, err := tck.New[*Storage, YourDriverType](
s, err := tck.New[*Storage, YourDriverType, *YourContainer](
context.Background(),
t,
&YourStorageTCK{},