From 9e7eb82feff63479037a83ad6a9f1374fcf5e575 Mon Sep 17 00:00:00 2001 From: Juan Facorro Date: Thu, 13 Nov 2014 16:03:28 -0300 Subject: [PATCH] [#12] Renamed example json module. --- test/egithub_json_SUITE.erl | 4 ++-- test/{egithub_example.erl => egithub_json_example.erl} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename test/{egithub_example.erl => egithub_json_example.erl} (92%) diff --git a/test/egithub_json_SUITE.erl b/test/egithub_json_SUITE.erl index 46c2314..af696a8 100644 --- a/test/egithub_json_SUITE.erl +++ b/test/egithub_json_SUITE.erl @@ -44,9 +44,9 @@ end_per_suite(_Config) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% encode_callback(_Config) -> - application:set_env(json, egithub, egithub_example), + application:set_env(json, egithub, egithub_json_example), 1 = egithub_json:encode(#{}). decode_callback(_Config) -> - application:set_env(json, egithub, egithub_example), + application:set_env(json, egithub, egithub_json_example), 2 = egithub_json:decode(#{}). diff --git a/test/egithub_example.erl b/test/egithub_json_example.erl similarity index 92% rename from test/egithub_example.erl rename to test/egithub_json_example.erl index 0535610..eb49aad 100644 --- a/test/egithub_example.erl +++ b/test/egithub_json_example.erl @@ -1,4 +1,4 @@ --module(egithub_example). +-module(egithub_json_example). -behaviour(egithub_json).