mirror of https://github.com/apache/nifi.git
NIFI-396 reverting accidentially modified whitespace in TestStandardProcessSession
This commit is contained in:
parent
cd183be441
commit
3f36236473
|
@ -426,6 +426,7 @@ public class TestStandardProcessSession {
|
|||
assertEquals(0, provenanceRepo.getEvents(0L, 100000).size());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testProvenanceEventsEmittedForForkIfNotRemoved() throws IOException {
|
||||
final FlowFileRecord flowFileRecord = new StandardFlowFileRecord.Builder()
|
||||
|
@ -973,6 +974,7 @@ public class TestStandardProcessSession {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testCreateEmitted() throws IOException {
|
||||
FlowFile newFlowFile = session.create();
|
||||
|
@ -1053,6 +1055,8 @@ public class TestStandardProcessSession {
|
|||
assertEquals(ProvenanceEventType.ATTRIBUTES_MODIFIED, event.getEventType());
|
||||
}
|
||||
|
||||
|
||||
|
||||
private static class MockFlowFileRepository implements FlowFileRepository {
|
||||
|
||||
private final AtomicLong idGenerator = new AtomicLong(0L);
|
||||
|
|
Loading…
Reference in New Issue