Skip to content

Commit d308adc

Browse files
committed
Fix too many & in url
1 parent 91c2853 commit d308adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

initializr-web/src/test/java/io/spring/initializr/web/controller/ProjectGenerationControllerIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void simpleZipProjectWithPropertiesFormat() {
7474

7575
@Test
7676
void simpleZipProjectWithYAMLFormat() {
77-
ResponseEntity<byte[]> entity = downloadArchive("/starter.zip?dependencies=web&&configurationFileFormat=yaml");
77+
ResponseEntity<byte[]> entity = downloadArchive("/starter.zip?dependencies=web&configurationFileFormat=yaml");
7878
assertArchiveResponseHeaders(entity, MediaType.valueOf("application/zip"), "demo.zip");
7979
ProjectStructure project = projectFromArchive(entity.getBody());
8080
assertDefaultProject(project);

0 commit comments

Comments
 (0)