aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/vfs/unfold_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/vfs/unfold_test.go')
-rw-r--r--container/vfs/unfold_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/container/vfs/unfold_test.go b/container/vfs/unfold_test.go
index e04c51a5..3e9d2702 100644
--- a/container/vfs/unfold_test.go
+++ b/container/vfs/unfold_test.go
@@ -10,6 +10,8 @@ import (
)
func TestUnfold(t *testing.T) {
+ t.Parallel()
+
testCases := []struct {
name string
sample string
@@ -50,6 +52,8 @@ func TestUnfold(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
+ t.Parallel()
+
d := vfs.NewMountInfoDecoder(strings.NewReader(tc.sample))
got, err := d.Unfold(tc.target)