Fix JSON-RPC test case which was checking wrong data type

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1527434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
lresende 2013-09-30 03:10:33 +00:00
parent 25b48faa2a
commit 9d5f85cd5c

View file

@ -161,7 +161,7 @@ public class JSONRPCDataTypeTestCase {
JSONObject jsonResp = new JSONObject(response.getText());
Assert.assertEquals(1, jsonResp.getJSONArray("result").getInt(0));
Assert.assertEquals("1", jsonResp.getJSONArray("result").getString(0));
}