Skip to content

Commit 52d61ca

Browse files
committed
fix style
1 parent 768351b commit 52d61ca

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/test/java/com/amadeus/NamespaceTest.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ public void setup() {
147147
Mockito.when(singleResponse.isParsed()).thenReturn(true);
148148
Mockito.when(singleResponse.getData()).thenReturn(jsonObject);
149149
}
150+
150151
@Test
151152
public void testCheckinLinks() throws ResponseException {
152153
// Testing Checkin Links
@@ -204,9 +205,9 @@ public void testPOIs() throws ResponseException {
204205
public void testPOIsBySquare() throws ResponseException {
205206
// Testing Points of Interest by square
206207
Mockito.when(client.get("/v1/reference-data/locations/pois", null))
207-
.thenReturn(multiResponse);
208+
.thenReturn(multiResponse);
208209
Mockito.when(client.get("/v1/reference-data/locations/pois", params))
209-
.thenReturn(multiResponse);
210+
.thenReturn(multiResponse);
210211
Mockito.when(client.get("/v1/reference-data/locations/pois/by-square", null))
211212
.thenReturn(multiResponse);
212213
Mockito.when(client.get("/v1/reference-data/locations/pois/by-square", params))
@@ -221,9 +222,9 @@ public void testPOIsBySquare() throws ResponseException {
221222
public void testPOIsById() throws ResponseException {
222223
// Testing Points of Interest by Id
223224
Mockito.when(client.get("/v1/reference-data/locations/pois", null))
224-
.thenReturn(multiResponse);
225+
.thenReturn(multiResponse);
225226
Mockito.when(client.get("/v1/reference-data/locations/pois", params))
226-
.thenReturn(multiResponse);
227+
.thenReturn(multiResponse);
227228
Mockito.when(client.get("/v1/reference-data/locations/pois/XXX", null))
228229
.thenReturn(multiResponse);
229230
Mockito.when(client.get("/v1/reference-data/locations/pois/XXX", params))

0 commit comments

Comments
 (0)