aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/mount_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-08-14 23:44:11 +0900
committerOphestra <cat@gensokyo.uk>2025-08-14 23:44:11 +0900
commitba3227bf1572654cf1a3a828f7ee22ddd0224261 (patch)
treef37f9bb13f77eebd22a5257027bed5a4061d521d /container/mount_test.go
parent0e543a58b36d4ab5d61c02ce93cf72bf2f218857 (diff)
container: export overlay escape
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/mount_test.go')
-rw-r--r--container/mount_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/container/mount_test.go b/container/mount_test.go
index 573f080b..eb904774 100644
--- a/container/mount_test.go
+++ b/container/mount_test.go
@@ -41,7 +41,7 @@ func TestEscapeOverlayDataSegment(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
- if got := escapeOverlayDataSegment(tc.s); got != tc.want {
+ if got := EscapeOverlayDataSegment(tc.s); got != tc.want {
t.Errorf("escapeOverlayDataSegment: %s, want %s", got, tc.want)
}
})