Browse Source

Merge pull request #45584 from corhere/fix-vfs-xattrs-unit-test

d/graphdriver/vfs: fix unit test
Bjorn Neergaard 2 years ago
parent
commit
cb14534d78
1 changed files with 2 additions and 2 deletions
  1. 2 2
      daemon/graphdriver/vfs/vfs_test.go

+ 2 - 2
daemon/graphdriver/vfs/vfs_test.go

@@ -86,8 +86,8 @@ func TestXattrUnsupportedByBackingFS(t *testing.T) {
 			expectErrIs: syscall.EOPNOTSUPP,
 		},
 		{
-			name: "xattrs=i_want_broken_containers",
-			opts: []string{"xattrs=i_want_broken_containers"},
+			name: "vfs.xattrs=i_want_broken_containers",
+			opts: []string{"vfs.xattrs=i_want_broken_containers"},
 		},
 	} {
 		t.Run(tt.name, func(t *testing.T) {