mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 01:58:32 +00:00
NIFI-10336 Removed unnecessary lineage check from TestMonitorActivity
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #6285.
This commit is contained in:
parent
24cea2a93b
commit
8605d0a29f
@ -287,7 +287,6 @@ public class TestMonitorActivity {
|
||||
restoredFlowFile.assertAttributeNotEquals(CoreAttributes.UUID.key(), originalFlowFile.getAttribute(CoreAttributes.UUID.key()));
|
||||
restoredFlowFile.assertAttributeNotEquals(CoreAttributes.FILENAME.key(), originalFlowFile.getAttribute(CoreAttributes.FILENAME.key()));
|
||||
assertNotEquals(restoredFlowFile.getSize(), originalFlowFile.getSize());
|
||||
assertNotEquals(restoredFlowFile.getLineageStartDate(), originalFlowFile.getLineageStartDate());
|
||||
|
||||
runner.clearTransferState();
|
||||
runner.setProperty(MonitorActivity.CONTINUALLY_SEND_MESSAGES, "true");
|
||||
@ -315,7 +314,6 @@ public class TestMonitorActivity {
|
||||
restoredFlowFile.assertAttributeNotEquals(CoreAttributes.UUID.key(), originalFlowFile.getAttribute(CoreAttributes.UUID.key()));
|
||||
restoredFlowFile.assertAttributeNotEquals(CoreAttributes.FILENAME.key(), originalFlowFile.getAttribute(CoreAttributes.FILENAME.key()));
|
||||
assertNotEquals(restoredFlowFile.getSize(), originalFlowFile.getSize());
|
||||
assertNotEquals(restoredFlowFile.getLineageStartDate(), originalFlowFile.getLineageStartDate());
|
||||
}
|
||||
|
||||
@Timeout(5)
|
||||
|
Loading…
x
Reference in New Issue
Block a user