Fixing more tests
diff --git a/.travis.yml b/.travis.yml
index e7a5d99..153702e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,11 +8,6 @@
   - R16B
   - R15B03
   - R15B02
-  - R15B01
-  - R15B
-  - R14B04
-  - R14B03
-  - R14B02
 script: "rm -rf deps ebin test/*.beam logs && ./rebar get-deps compile && ./rebar ct"
 branches:
   only:
diff --git a/test/recon_SUITE.erl b/test/recon_SUITE.erl
index 0a3b0db..c5f1975 100644
--- a/test/recon_SUITE.erl
+++ b/test/recon_SUITE.erl
@@ -110,7 +110,7 @@
     Res = recon:proc_count(memory, 10),
     true = proc_attrs(Res),
     %% greatest to smallest
-    true = lists:usort(fun({_,V1,_},{_,V2,_}) -> V1 >= V2 end,
+    true = lists:usort(fun({P1,V1,_},{P2,V2,_}) -> {V1,P1} >= {V2,P2} end,
                        Res) =:= Res,
     10 = length(Res),
     15 = length(recon:proc_count(reductions, 15)).