Skip to content

Commit e84070b

Browse files
committed
Fix reference to test file
1 parent 326cdb6 commit e84070b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/cuttlefish_integration_test.erl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626
generated_conf_file_test() ->
2727
{_, Mappings, _} = cuttlefish_schema:file(
2828
cuttlefish_test_util:test_file("riak.schema")),
29-
cuttlefish_conf:generate_file(Mappings, "generated.conf"),
29+
GenConf = cuttlefish_test_util:test_file("generated.conf"),
30+
cuttlefish_conf:generate_file(Mappings, GenConf),
3031
%% Schema generated a conf file, let's parse it!
31-
Conf = cuttlefish_conf:file("generated.conf"),
32+
Conf = cuttlefish_conf:file(GenConf),
3233
?assertEqual("8099", proplists:get_value(["handoff","port"], Conf)),
3334
ok.
3435

0 commit comments

Comments
 (0)