Skip to content

Commit 3de162c

Browse files
committed
Fix too many & in url
Signed-off-by: sijun-yang <[email protected]>
1 parent 91c2853 commit 3de162c

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)