Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/239#discussion_r143231961
--- Diff:
extras/indexing/src/test/java/org/apache/rya/indexing/mongo/MongoEntityIndexTest.java
---
@@ -54,11 +55,11 @@
.build());
private static final RyaURI RYA_PERSON_TYPE = new RyaURI("urn:person");
- private static EntityIndexOptimizer optimizer;
- private static EntityStorage entityStorage;
+ private EntityIndexOptimizer optimizer;
+ private EntityStorage entityStorage;
- @BeforeClass
- public static void beforeClass() throws Exception {
--- End diff --
Decided to change this to @Before as opposed to changing parent init to
@BeforeClass?
---