Remove useless eunit include
diff --git a/src/rexi_app.erl b/src/rexi_app.erl
index c791d83..0f1e892 100644
--- a/src/rexi_app.erl
+++ b/src/rexi_app.erl
@@ -14,7 +14,6 @@
 -behaviour(application).
 -export([start/2, stop/1]).
 
--include_lib("eunit/include/eunit.hrl").
 
 start(_Type, StartArgs) ->
     rexi_sup:start_link(StartArgs).
diff --git a/src/rexi_monitor.erl b/src/rexi_monitor.erl
index f143ead..da6dcf5 100644
--- a/src/rexi_monitor.erl
+++ b/src/rexi_monitor.erl
@@ -13,7 +13,6 @@
 -module(rexi_monitor).
 -export([start/1, stop/1]).
 
--include_lib("eunit/include/eunit.hrl").
 
 %% @doc spawn_links a process which monitors the supplied list of items and
 %% returns the process ID.  If a monitored process exits, the caller will
diff --git a/src/rexi_server.erl b/src/rexi_server.erl
index f71f878..6cecdb8 100644
--- a/src/rexi_server.erl
+++ b/src/rexi_server.erl
@@ -19,7 +19,6 @@
 -export([start_link/1, init_p/2, init_p/3]).
 
 -include_lib("rexi/include/rexi.hrl").
--include_lib("eunit/include/eunit.hrl").
 
 -record(job, {
     client::reference(),