Skip to content

Commit

Permalink
remove redundant type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikushch committed Oct 11, 2018
1 parent dc24d98 commit f87c59c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1958,7 +1958,7 @@ var _ = Describe("Commands", func() {

sMembersMap := client.SMembersMap("set")
Expect(sMembersMap.Err()).NotTo(HaveOccurred())
Expect(sMembersMap.Val()).To(Equal(map[string]struct{}{"Hello": struct{}{}, "World": struct{}{}}))
Expect(sMembersMap.Val()).To(Equal(map[string]struct{}{"Hello": {}, "World": {}}))
})

It("should SMove", func() {
Expand Down

0 comments on commit f87c59c

Please sign in to comment.