mirror of https://github.com/go-redis/redis.git
Cleanup tests
This commit is contained in:
parent
8403178174
commit
368f0ea0ba
|
@ -114,13 +114,12 @@ var _ = Describe("Commands", func() {
|
||||||
|
|
||||||
Expect(get.Err()).NotTo(HaveOccurred())
|
Expect(get.Err()).NotTo(HaveOccurred())
|
||||||
Expect(get.Val()).To(Equal("theclientname"))
|
Expect(get.Val()).To(Equal("theclientname"))
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
It("should ConfigGet", func() {
|
It("should ConfigGet", func() {
|
||||||
r := client.ConfigGet("*")
|
val, err := client.ConfigGet("*").Result()
|
||||||
Expect(r.Err()).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(r.Val()).NotTo(BeEmpty())
|
Expect(val).NotTo(BeEmpty())
|
||||||
})
|
})
|
||||||
|
|
||||||
It("should ConfigResetStat", func() {
|
It("should ConfigResetStat", func() {
|
||||||
|
|
Loading…
Reference in New Issue