about summary refs log tree commit diff
path: root/tvix/nar-bridge/pkg/importer/roundtrip_test.go
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-10-11T09·21+0200
committerflokli <flokli@flokli.de>2023-10-11T11·41+0000
commitceb1674e9f66bcbf382130bb195d367d269ddf86 (patch)
tree02f62d6d89ee302a756f476ebbdffd9418c75506 /tvix/nar-bridge/pkg/importer/roundtrip_test.go
parent930edb69d7447f0cbe9149d01dcf9fa8443518c8 (diff)
refactor(tvix/nar-bridge): pass root node to storev1pb.Export r/6779
Bumps the go module past cl/9604 and update the consumer side.

Change-Id: Id44245017f1dc2f8aac28051cdbb45b83bdc5be3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9650
Reviewed-by: Brian McGee <brian@bmcgee.ie>
Tested-by: BuildkiteCI
Diffstat (limited to '')
-rw-r--r--tvix/nar-bridge/pkg/importer/roundtrip_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nar-bridge/pkg/importer/roundtrip_test.go b/tvix/nar-bridge/pkg/importer/roundtrip_test.go
index 89603cfcfd..1daba449bd 100644
--- a/tvix/nar-bridge/pkg/importer/roundtrip_test.go
+++ b/tvix/nar-bridge/pkg/importer/roundtrip_test.go
@@ -59,7 +59,7 @@ func TestRoundtrip(t *testing.T) {
 	var buf bytes.Buffer
 	err = storev1pb.Export(
 		&buf,
-		pathInfo,
+		pathInfo.Node,
 		func(directoryDgst []byte) (*castorev1pb.Directory, error) {
 			d, found := directoriesMap[base64.StdEncoding.EncodeToString(directoryDgst)]
 			if !found {