mirror of
https://gitee.com/dcren/initializr.git
synced 2025-04-05 17:38:06 +08:00
Polish "Remove surrounding brackets for gradle dependencies"
Closes gh-797
This commit is contained in:
parent
19301ed6ff
commit
51dbc92297
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2018 the original author or authors.
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@ -95,10 +95,9 @@ public class ProjectGenerationSmokeTests
|
||||
page.type("gradle-project");
|
||||
page.submit();
|
||||
assertSimpleProject().isGradleProject().gradleBuildAssert()
|
||||
.contains("implementation 'org.springframework.boot:spring-boot-starter'")
|
||||
.contains(
|
||||
"implementation('org.springframework.boot:spring-boot-starter')")
|
||||
.contains(
|
||||
"testImplementation('org.springframework.boot:spring-boot-starter-test')");
|
||||
"testImplementation 'org.springframework.boot:spring-boot-starter-test'");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user