oci: Remove empty mount option slice for FreeBSD

Mount options are marked `json:omitempty`. An empty slice in the default
object caused TestWithSpecFromFile to fail.

Signed-off-by: Samuel Karp <me@samuelkarp.com>
This commit is contained in:
Samuel Karp 2022-06-08 22:33:23 -07:00
parent c15f0cdaf0
commit ad8e598060
No known key found for this signature in database
GPG Key ID: AAA3FE8A831FC087

View File

@ -32,7 +32,6 @@ func defaultMounts() []specs.Mount {
Destination: "/dev/fd", Destination: "/dev/fd",
Type: "fdescfs", Type: "fdescfs",
Source: "fdescfs", Source: "fdescfs",
Options: []string{},
}, },
} }
} }