Made example App a bit easier to understand

This commit is contained in:
Narendra Pathai
2016-02-10 17:53:32 +05:30
parent f64ba22c64
commit b5d4445d63
2 changed files with 4 additions and 16 deletions

View File

@ -36,8 +36,8 @@ public class AbstractFactoryTest {
@Before
public void setUp() {
elfFactory = app.getElfKingdomFactory();
orcFactory = app.getOrcKingdomFactory();
elfFactory = new ElfKingdomFactory();
orcFactory = new OrcKingdomFactory();
}
@Test