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>
Showing
- htest/Test/Ganeti/BasicTypes.hs 5 additions, 3 deletionshtest/Test/Ganeti/BasicTypes.hs
- htest/Test/Ganeti/HTools/Cluster.hs 9 additions, 8 deletionshtest/Test/Ganeti/HTools/Cluster.hs
- htest/Test/Ganeti/HTools/Container.hs 6 additions, 4 deletionshtest/Test/Ganeti/HTools/Container.hs
- htest/Test/Ganeti/HTools/Simu.hs 10 additions, 10 deletionshtest/Test/Ganeti/HTools/Simu.hs
- htest/Test/Ganeti/HTools/Text.hs 6 additions, 5 deletionshtest/Test/Ganeti/HTools/Text.hs
- htest/Test/Ganeti/Objects.hs 7 additions, 6 deletionshtest/Test/Ganeti/Objects.hs
- htest/Test/Ganeti/Query/Query.hs 59 additions, 47 deletionshtest/Test/Ganeti/Query/Query.hs
Loading
Please register or sign in to comment