diff options
| author | 2026-05-17 14:45:40 +0000 | |
|---|---|---|
| committer | 2026-05-17 14:45:40 +0000 | |
| commit | 676d0e6766e9af0574485dfac9a5d8ddf933ab03 (patch) | |
| tree | f1e03fa276bee2cb13108cdfc010ebffd4f565e0 /reachability/unit_test.go | |
| parent | research: dynamic packfiles do not need abbreviated hashes (diff) | |
| signature | No signature | |
object: Serialize -> Bytes
Diffstat (limited to 'reachability/unit_test.go')
| -rw-r--r-- | reachability/unit_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reachability/unit_test.go b/reachability/unit_test.go index 1f761108..5be7f6fb 100644 --- a/reachability/unit_test.go +++ b/reachability/unit_test.go @@ -415,9 +415,9 @@ func TestWalkInvalidDomainReturnsPlainError(t *testing.T) { func mustSerializeTree(tb testing.TB, tree *tree.Tree) []byte { tb.Helper() - body, err := tree.SerializeWithoutHeader() + body, err := tree.BytesWithoutHeader() if err != nil { - tb.Fatalf("SerializeWithoutHeader: %v", err) + tb.Fatalf("BytesWithoutHeader: %v", err) } return body |
