Update sample with placeholders for oauth client

This commit is contained in:
Madhura Bhave
2017-10-03 13:08:56 -07:00
parent 9692abba70
commit 9f1ed197d2
3 changed files with 7 additions and 6 deletions

View File

@@ -22,7 +22,8 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Madhura Bhave
*/
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = {
"APP-CLIENT-ID=my-client-id", "APP-CLIENT-SECRET=my-client-secret" })
@DirtiesContext
public class SampleOAuth2ClientApplicationTests {