Skip to content

Commit

Permalink
Update old dbs.csv testfile to new formating of dbs.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasNx committed Oct 9, 2023
1 parent 1a98e21 commit aba7538
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 118 deletions.
2 changes: 1 addition & 1 deletion test/controllers/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void getByDbsIdHasIsilWillRedirect() {
@Test
public void getByDbsIdHasNoIsilNoRedirect() {
running(fakeApplication(), () -> {
Result result = route(fakeRequest(GET, "/organisations/DBS-AA022"));
Result result = route(fakeRequest(GET, "/organisations/DBS-AA600"));
assertThat(Helpers.status(result)).isEqualTo(Status.OK);
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/index/TestGeoSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ private static SearchResponse geoSearch(double lon, double lat) {
public void requestGeo() {
SearchResponse response = geoSearch(13, 52);
long hits = response.getHits().getTotalHits();
assertEquals("Request should return 2 hits", 2, hits);
assertEquals("Request should return 5 hits", 5, hits);
}
}
Loading

0 comments on commit aba7538

Please sign in to comment.