diff options
author | Ed Santiago <santiago@redhat.com> | 2022-04-27 15:12:57 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-04-28 05:43:41 -0600 |
commit | a5aea8e503e6b2e6226392008c975444c76bc55b (patch) | |
tree | 8de80bf8f4c9605aa463d73552c6e375b7a8e805 /test/e2e/create_test.go | |
parent | b3f38c31b29b51440edd5913a90019efbced0862 (diff) | |
download | podman-a5aea8e503e6b2e6226392008c975444c76bc55b.tar.gz podman-a5aea8e503e6b2e6226392008c975444c76bc55b.tar.bz2 podman-a5aea8e503e6b2e6226392008c975444c76bc55b.zip |
Three manual fixes
Two for this error:
invalid indirect of pod.Spec.DNSConfig.Options[0]
...and one for a gofmt error (spaces).
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/e2e/create_test.go')
-rw-r--r-- | test/e2e/create_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/create_test.go b/test/e2e/create_test.go index 9b1340a2c..d0813459d 100644 --- a/test/e2e/create_test.go +++ b/test/e2e/create_test.go @@ -448,7 +448,7 @@ var _ = Describe("Podman create", func() { inspect.WaitWithDefaultTimeout() data := inspect.InspectContainerToJSON() Expect(data).To(HaveLen(1)) - Expect(data[0].HostConfig).To(HaveField("MemorySwap", int64(2 * numMem))) + Expect(data[0].HostConfig).To(HaveField("MemorySwap", int64(2*numMem))) }) It("podman create --cpus 5 sets nanocpus", func() { |