Skip to content

Commit 0e679a3

Browse files
committed
Fix mount test that broke due to merge conflict
1 parent d8f101b commit 0e679a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/cluster/mount_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func TestMount(t *testing.T) {
6464
target: "target",
6565
cfg: &MountConfig{Type: "9p", Mode: os.FileMode(0700), UID: "docker", GID: "docker"},
6666
want: []string{
67-
"findmnt -T target && sudo umount target || true",
67+
"findmnt -T target | grep target && sudo umount target || true",
6868
"sudo mkdir -m 700 -p target && sudo mount -t 9p -o dfltgid=$(grep ^docker: /etc/group | cut -d: -f3),dfltuid=$(id -u docker) src target",
6969
},
7070
},

0 commit comments

Comments
 (0)