forked from mirror/redis
Fix build
This commit is contained in:
parent
6c3e78d03f
commit
0604be51df
|
@ -270,11 +270,11 @@ var _ = Describe("Commands", func() {
|
||||||
|
|
||||||
n, err := client.MemoryUsage("foo").Result()
|
n, err := client.MemoryUsage("foo").Result()
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(n).To(Equal(int64(52)))
|
Expect(n).To(Equal(int64(50)))
|
||||||
|
|
||||||
n, err = client.MemoryUsage("foo", 0).Result()
|
n, err = client.MemoryUsage("foo", 0).Result()
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(n).To(Equal(int64(52)))
|
Expect(n).To(Equal(int64(50)))
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue