Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
fix linting problems
Browse files Browse the repository at this point in the history
  • Loading branch information
goncalotomas committed Oct 22, 2018
1 parent 1312792 commit f3f6171
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions test/fmke_antidote_transactions_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,7 @@ end_per_testcase(_TestCase, _Config) ->
%% TestCase = atom()
%% Reason = term()
%%--------------------------------------------------------------------
all() ->
[
read_read_succeds
,read_write_succeeds
,write_write_aborts
].
all() -> [read_read_succeds, read_write_succeeds, write_write_aborts].

read_read_succeds(_Config) ->
Key = list_to_binary(rand_str:get(64)),
Expand Down Expand Up @@ -161,10 +156,10 @@ write_write_aborts(_Config) ->
ok.

checkin_remote_pid(Pid) ->
rpc(fmke_db_conn_manager,checkout, [Pid]).
rpc(fmke_db_conn_manager, checkout, [Pid]).

checkout_remote_pid() ->
rpc(fmke_db_conn_manager,checkout, []).
rpc(fmke_db_conn_manager, checkout, []).

rpc(Mod, Fun, Args) ->
rpc:call(?NODENAME, Mod, Fun, Args).

0 comments on commit f3f6171

Please sign in to comment.