Skip to content

Commit

Permalink
fix testContainersVariantStruct init
Browse files Browse the repository at this point in the history
  • Loading branch information
rekby committed Dec 8, 2023
1 parent ad2aaef commit 63fb33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/table_containers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestContainers(t *testing.T) {
return res.Scan(&testContainersExampleStruct{test: t})
},
func() error {
return res.Scan(&testContainersVariantStruct{})
return res.Scan(&testContainersVariantStruct{test: t})
},
func() error {
return res.Scan(&testContainersVariantTuple{test: t})
Expand Down

0 comments on commit 63fb33c

Please sign in to comment.