Code example changes

This commit is contained in:
Vasudha Venkatesan
2020-02-26 14:43:33 +05:30
committed by akuksin
parent 531d05de64
commit 670c4c845a

View File

@@ -16,10 +16,10 @@ public class TestCakeClassConstructorInjection {
@Autowired
Cake cake;
@Test
public void testConstructorInjection() {
String testColor=cake.getFlavor().getColor();
public void testConstructorInjection() {
String testColor = cake.getFlavor().getColor();
Assert.assertEquals(testColor, " White ");
}
}