diff --git a/src/Distributed/DistributedAgFEM.jl b/src/Distributed/DistributedAgFEM.jl
index 6414cef..b4f0961 100644
--- a/src/Distributed/DistributedAgFEM.jl
+++ b/src/Distributed/DistributedAgFEM.jl
@@ -404,11 +404,7 @@ function add_remote_ids(gids::PRange,remote_gids,remote_parts)
   p = map(lid_to_gid,lid_to_part,partition(gids)) do l_to_g,l_to_p,p
     l_to_g = collect(Int,l_to_g)
     l_to_p = collect(Int32,l_to_p)
-    ids = LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
-    @show typeof(l_to_g)
-    @show typeof(local_to_global(ids))
-    @show typeof(ghost_to_global(ids))
-    ids
+    LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
   end
   PRange(p)
 end
diff --git a/test/DistributedTests/runtests.jl b/test/DistributedTests/runtests.jl
index e4b3489..fd13110 100644
--- a/test/DistributedTests/runtests.jl
+++ b/test/DistributedTests/runtests.jl
@@ -1,5 +1,8 @@
 module DistributedTests
 
-include("sequential/runtests.jl")
+if Int === Int64
+  include("sequential/runtests.jl")
+  include("mpi/runtests.jl")
+end
 
 end # module