Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly committed Jul 18, 2024
1 parent 85d84f9 commit c288c2d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public ResponseEntity<String> index(
@RequestHeader(HttpHeaders.HOST) String hostHeader,
HttpServletRequest request
) {

String origin = String.format("%s://%s", request.getScheme(), hostHeader);
if (this.inngestOrigin != null && !this.inngestOrigin.isEmpty()) {
origin = this.inngestOrigin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@AutoConfigureMockMvc
@Execution(ExecutionMode.CONCURRENT)
class SpringBootDemoApplicationIntegrationTest {
@Value("${TEST_URL:http://localhost:8080}")
@Value("${TEST_URL:http://localhost:8090}")
private String testUrl;

@Autowired
Expand Down

0 comments on commit c288c2d

Please sign in to comment.