aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/mkdir_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/mkdir_test.go')
-rw-r--r--system/mkdir_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/mkdir_test.go b/system/mkdir_test.go
index 8fc12a17..2ead2e10 100644
--- a/system/mkdir_test.go
+++ b/system/mkdir_test.go
@@ -21,7 +21,7 @@ func TestEnsure(t *testing.T) {
t.Run(tc.name+"_"+tc.perm.String(), func(t *testing.T) {
sys := New(t.Context(), 150)
sys.Ensure(tc.name, tc.perm)
- (&tcOp{User, tc.name}).test(t, sys.ops, []Op{&MkdirOp{User, tc.name, tc.perm, false}}, "Ensure")
+ (&tcOp{User, tc.name}).test(t, sys.ops, []Op{&mkdirOp{User, tc.name, tc.perm, false}}, "Ensure")
})
}
}
@@ -38,7 +38,7 @@ func TestEphemeral(t *testing.T) {
t.Run(tc.path+"_"+tc.perm.String()+"_"+TypeString(tc.et), func(t *testing.T) {
sys := New(t.Context(), 150)
sys.Ephemeral(tc.et, tc.path, tc.perm)
- tc.test(t, sys.ops, []Op{&MkdirOp{tc.et, tc.path, tc.perm, true}}, "Ephemeral")
+ tc.test(t, sys.ops, []Op{&mkdirOp{tc.et, tc.path, tc.perm, true}}, "Ephemeral")
})
}
}
@@ -60,7 +60,7 @@ func TestMkdirString(t *testing.T) {
}
for _, tc := range testCases {
t.Run(tc.want, func(t *testing.T) {
- m := &MkdirOp{
+ m := &mkdirOp{
et: tc.et,
path: container.Nonexistent,
perm: 0701,