From 5ecdee0e1bf4c3885d8c4c50539957db77fb82d4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 29 Jun 2017 16:15:35 +0200 Subject: [PATCH] Polish --- .../org/springframework/boot/test/context/ContextLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-test/src/main/java/org/springframework/boot/test/context/ContextLoader.java b/spring-boot-test/src/main/java/org/springframework/boot/test/context/ContextLoader.java index d801ea9441..cd85b114aa 100644 --- a/spring-boot-test/src/main/java/org/springframework/boot/test/context/ContextLoader.java +++ b/spring-boot-test/src/main/java/org/springframework/boot/test/context/ContextLoader.java @@ -61,7 +61,7 @@ import static org.assertj.core.api.Assertions.assertThat; * @Test * public someTest() { * this.contextLoader.config(UserConfig.class).env("spring.foo=biz") - * .load(context -> { + * .load(context -> { * // assertions using the context * }); * }