Polish "Remove surrounding brackets for gradle dependencies"

Closes gh-797
This commit is contained in:
Stephane Nicoll 2019-01-09 15:18:08 +01:00
parent 19301ed6ff
commit 51dbc92297

View File

@ -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