Remove multiple uses of '.&&.' with conjoin
authorIustin Pop <iustin@google.com>
Mon, 22 Oct 2012 12:19:42 +0000 (14:19 +0200)
committerIustin Pop <iustin@google.com>
Mon, 22 Oct 2012 15:19:42 +0000 (17:19 +0200)
commit942a9a6a1d44aaab9a8ec8aa3deb8064f5d009d6
tree0b9da82a5be445a109f444ddaf868e0aa9c9f814
parent41eb900ea2429e083685c590fb274af6c35fbb16
Remove multiple uses of '.&&.' with conjoin

This is just a bit of cleanup. The (.&&.) operator is internally just:

  a .&& b = conjoin [a, b]

so let's replace 'a .&&. b .&&. c .&&. d' directly with 'conjoin [a,
b, c, d]'.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>
htest/Test/Ganeti/BasicTypes.hs
htest/Test/Ganeti/HTools/Cluster.hs
htest/Test/Ganeti/HTools/Container.hs
htest/Test/Ganeti/HTools/Simu.hs
htest/Test/Ganeti/HTools/Text.hs
htest/Test/Ganeti/Objects.hs
htest/Test/Ganeti/Query/Query.hs