kirklund commented on a change in pull request #5925:
URL: https://github.com/apache/geode/pull/5925#discussion_r585774910
##########
File path:
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/RegionConcurrentOperationDUnitTest.java
##########
@@ -61,9 +63,14 @@ private static DUnitBlackboard getBlackboard() {
@Rule
public ExecutorServiceRule executorServiceRule = new ExecutorServiceRule();
+ @Rule
+ public DistributedBlackboard blackboard = new DistributedBlackboard();
+
@After
public void tearDown() {
- blackboard.initBlackboard();
+ if (blackboard != null) {
Review comment:
You can delete this `tearDown`. The `DistributedBlackboard` Rule handles
this for you. (If it doesn't, that's a bug that I need to know about.)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]