These export_all declarations weren't getting used -- that is, we weren't testing unexported functions. So removing.
@@ -58,11 +58,6 @@
terminate/2,
code_change/3]).
-%% To help with testing internal functions
--ifdef(TEST).
--compile([export_all]).
--endif.
-
%% ------------------------------------------------------------------
%% Application API
@@ -28,11 +28,6 @@
%% API Function Definitions
@@ -48,7 +48,7 @@ get_metrics() ->
%% gen_server Function Definitions
-record(state, {
- metrics = []
+ metrics = [] :: list()
}).
init(_) ->