THRIFT-2930 erlang module thriftTest_thrift referenced instead of thrift_test_thrift

This closes #347

commit b8da46b6908b826d3fb4f6077455e6a57fb8a04f
Author: Bosky <bosky@helpshift.com>
Date: 2015-01-04T22:06:39Z

THRIFT-2930 erlang module thriftTest_thrift referenced instead of thrift_test_thrift
Client: Erlang
Patch: Bhasker Kode

Replace thriftTest_thrift with thrift_test_thrift in a test and the Readme.
diff --git a/lib/erl/README.md b/lib/erl/README.md
index 528d3ce..a61a53c 100644
--- a/lib/erl/README.md
+++ b/lib/erl/README.md
@@ -31,7 +31,7 @@
 
 Example session using thrift_client:
 
-1> {ok, C0} = thrift_client_util:new("localhost", 9090, thriftTest_thrift, []), ok.
+1> {ok, C0} = thrift_client_util:new("localhost", 9090, thrift_test_thrift, []), ok.
 ok
 2> {C1, R1} = thrift_client:call(C0, testVoid, []), R1.
 {ok,ok}
diff --git a/lib/erl/test/test_thrift_server.erl b/lib/erl/test/test_thrift_server.erl
index dcd3fed..1f43b72 100644
--- a/lib/erl/test/test_thrift_server.erl
+++ b/lib/erl/test/test_thrift_server.erl
@@ -52,7 +52,7 @@
 
 start_link(Port, ServerOpts) ->
     thrift_socket_server:start([{handler, ?MODULE},
-                                {service, thriftTest_thrift},
+                                {service, thrift_test_thrift},
                                 {port, Port}] ++
                                ServerOpts).