--- a/test/net/timbusproject/dpes/alternative/ReasonerClient/REST/ReasonerWebClientTest.java
+++ b/test/net/timbusproject/dpes/alternative/ReasonerClient/REST/ReasonerWebClientTest.java
@@ -46,7 +46,7 @@
     public void testRequestResult_noUuid_shouldReturnValidResponse() throws IOException, ReasonerClientException, XPathExpressionException {
         ReasonerWebClient client = new ReasonerWebClient();
         JSONObject jsonObject = client.requestReasoning(TestHelper.createTestRequest().toString());
-        JSONObject actual = client.requestResult(jsonObject.getString("uuid"));
+        JSONObject actual = client.requestResult(String.valueOf(jsonObject.getInt("id")));
         assertThat(actual.toString(), not(isEmptyOrNullString()));
     }
 }