Skip to content

Commit

Permalink
Fixing Checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Antonio Brena Moral committed Jul 7, 2022
1 parent 9ac5391 commit aa8c268
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/amadeus/referenceData/Locations.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import com.amadeus.Response;
import com.amadeus.exceptions.ResponseException;
import com.amadeus.referenceData.locations.Airports;
import com.amadeus.referenceData.locations.Hotel;
import com.amadeus.referenceData.locations.Cities;
import com.amadeus.referenceData.locations.Hotel;
import com.amadeus.referenceData.locations.Hotels;
import com.amadeus.referenceData.locations.PointOfInterest;
import com.amadeus.referenceData.locations.PointsOfInterest;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/amadeus/NamespaceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import com.amadeus.referenceData.Locations;
import com.amadeus.referenceData.RecommendedLocations;
import com.amadeus.referenceData.locations.Airports;
import com.amadeus.referenceData.locations.Hotel;
import com.amadeus.referenceData.locations.Cities;
import com.amadeus.referenceData.locations.Hotel;
import com.amadeus.referenceData.locations.PointsOfInterest;
import com.amadeus.referenceData.locations.hotels.ByCity;
import com.amadeus.referenceData.locations.hotels.ByGeocode;
Expand Down Expand Up @@ -538,7 +538,7 @@ public void testGetMethods() throws ResponseException {
Mockito.when(client.get("/v1/reference-data/locations/hotel", params))
.thenReturn(multiResponse);
assertNotNull(hotel.get(params));

// Testing city search get
Mockito.when(client.get("/v1/reference-data/locations/cities", null))
.thenReturn(multiResponse);
Expand Down

0 comments on commit aa8c268

Please sign in to comment.