Skip to content

Commit

Permalink
fix-hrls: shorter relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
fenollp committed Apr 13, 2016
1 parent 55cf3f4 commit b729076
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions applications/callflow/test/cf_temporal_route_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
%%%-------------------------------------------------------------------
-module(cf_temporal_route_test).

-include("../src/callflow.hrl").
-include("../src/module/cf_temporal_route.hrl").
-include("callflow.hrl").
-include("module/cf_temporal_route.hrl").
-include_lib("eunit/include/eunit.hrl").

sort_wdays_test() ->
Expand Down
2 changes: 1 addition & 1 deletion applications/crossbar/src/cb_devices_utils.erl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

-export([is_ip_unique/2]).

-include("./crossbar.hrl").
-include("crossbar.hrl").

-define(AUTHZ_ID, <<"authorizing_id">>).

Expand Down
2 changes: 1 addition & 1 deletion applications/crossbar/src/cb_mobile_manager.erl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

-export([delete_account/1]).

-include("./crossbar.hrl").
-include("crossbar.hrl").

-define(MOD_CONFIG_CAT, <<"mobile_manager">>).

Expand Down
2 changes: 1 addition & 1 deletion applications/crossbar/src/crossbar_init.erl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
,start_mod/1, stop_mod/1
]).

-include("./crossbar.hrl").
-include("crossbar.hrl").

-define(USE_COMPRESSION, whapps_config:get_is_true(?CONFIG_CAT, <<"compress_response_body">>, 'true')).

Expand Down
2 changes: 1 addition & 1 deletion applications/crossbar/src/modules/cb_recordings.erl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
,validate/1, validate/2, validate/3
]).

-include("../crossbar.hrl").
-include("crossbar.hrl").

-define(CB_LIST, <<"recordings/crossbar_listing">>).
-define(CB_LIST_BY_OWNERID, <<"recordings/listing_by_user">>).
Expand Down
2 changes: 1 addition & 1 deletion applications/crossbar/test/cb_token_restrictions_test.hrl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-ifndef(CB_TOKEN_RESTRICTIONS_TEST_HRL).

-include("../src/crossbar_types.hrl").
-include("crossbar_types.hrl").

-define(AUTH_ACCOUNT_ID, <<"6eb37425cd30bf7e5b1785abdcbc2c1d">>).
-define(ACCOUNT_ID, <<"c959c8f96db9891f99e6f655d1aeb503">>).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
,handle_req/2
]).

-include("../teletype.hrl").
-include("teletype.hrl").

-define(TEMPLATE_ID, <<"customer_update">>).
-define(MOD_CONFIG_CAT, <<(?NOTIFY_CONFIG_CAT)/binary, ".", (?TEMPLATE_ID)/binary>>).
Expand Down
2 changes: 1 addition & 1 deletion core/kazoo_sip/src/kazoo_sip.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-include_lib("whistle/include/wh_types.hrl").
-include_lib("whistle/include/wh_log.hrl").

-include("../include/kzsip_uri.hrl").
-include("kzsip_uri.hrl").

-define(KAZOO_SIP_HRL, 'true').
-endif.
2 changes: 1 addition & 1 deletion core/whistle_apps/src/whapps_call_command.erl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
%%%-------------------------------------------------------------------
-module(whapps_call_command).

-include("./whapps_call_command.hrl").
-include("whapps_call_command.hrl").

-export([presence/2, presence/3, presence/4, presence/5]).
-export([channel_status/1, channel_status/2
Expand Down
2 changes: 1 addition & 1 deletion core/whistle_services/src/services/wh_service_ledgers.erl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

-define(CATEGORY, <<"ledgers">>).

-include("../whistle_services.hrl").
-include("whistle_services.hrl").

%%--------------------------------------------------------------------
%% @public
Expand Down

0 comments on commit b729076

Please sign in to comment.