@@ -500,7 +500,7 @@ public void testGetFlowRuns() throws Exception {
500500 Response resp = getResponse (client , uri );
501501 Set <FlowRunEntity > entities =
502502 resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
503- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
503+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
504504 resp .getMediaType ().toString ());
505505 assertNotNull (entities );
506506 assertEquals (2 , entities .size ());
@@ -520,7 +520,7 @@ public void testGetFlowRuns() throws Exception {
520520 + "clusters/cluster1/users/user1/flows/flow_name/runs?limit=1" );
521521 resp = getResponse (client , uri );
522522 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
523- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
523+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
524524 resp .getMediaType ().toString ());
525525 assertNotNull (entities );
526526 assertEquals (1 , entities .size ());
@@ -537,7 +537,7 @@ public void testGetFlowRuns() throws Exception {
537537 "createdtimestart=1425016501030" );
538538 resp = getResponse (client , uri );
539539 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
540- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
540+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
541541 resp .getMediaType ().toString ());
542542 assertNotNull (entities );
543543 assertEquals (1 , entities .size ());
@@ -554,7 +554,7 @@ public void testGetFlowRuns() throws Exception {
554554 "createdtimestart=1425016500999&createdtimeend=1425016501035" );
555555 resp = getResponse (client , uri );
556556 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
557- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
557+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
558558 resp .getMediaType ().toString ());
559559 assertNotNull (entities );
560560 assertEquals (2 , entities .size ());
@@ -574,7 +574,7 @@ public void testGetFlowRuns() throws Exception {
574574 "createdtimeend=1425016501030" );
575575 resp = getResponse (client , uri );
576576 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
577- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
577+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
578578 resp .getMediaType ().toString ());
579579 assertNotNull (entities );
580580 assertEquals (1 , entities .size ());
@@ -591,7 +591,7 @@ public void testGetFlowRuns() throws Exception {
591591 "fields=metrics" );
592592 resp = getResponse (client , uri );
593593 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
594- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
594+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
595595 resp .getMediaType ().toString ());
596596 assertNotNull (entities );
597597 assertEquals (2 , entities .size ());
@@ -628,7 +628,7 @@ public void testGetFlowRunsMetricsToRetrieve() throws Exception {
628628 Response resp = getResponse (client , uri );
629629 Set <FlowRunEntity > entities =
630630 resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
631- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
631+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
632632 resp .getMediaType ().toString ());
633633 assertNotNull (entities );
634634 assertEquals (2 , entities .size ());
@@ -647,7 +647,7 @@ public void testGetFlowRunsMetricsToRetrieve() throws Exception {
647647 "metricstoretrieve=!(MAP_,HDFS_)" );
648648 resp = getResponse (client , uri );
649649 entities = resp .readEntity (new GenericType <Set <FlowRunEntity >>(){});
650- assertEquals (MediaType .APPLICATION_JSON_TYPE + "; charset=utf-8" ,
650+ assertEquals (MediaType .APPLICATION_JSON_TYPE + ";charset=utf-8" ,
651651 resp .getMediaType ().toString ());
652652 assertNotNull (entities );
653653 assertEquals (2 , entities .size ());
0 commit comments