mirror of https://github.com/apache/nifi.git
NIFI-1356: Fixed typo in unit test that caused it to look for Shapes_Header.csv.avro instead of Shapes_header.csv.avro (i.e., case of h in Header)
This commit is contained in:
parent
5ded6b223b
commit
68975dc2d7
|
@ -74,7 +74,7 @@ public class TestInferAvroSchema {
|
||||||
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
|
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
|
||||||
|
|
||||||
MockFlowFile flowFile = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
|
MockFlowFile flowFile = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
|
||||||
flowFile.assertContentEquals(new File("src/test/resources/Shapes_Header.csv.avro").toPath());
|
flowFile.assertContentEquals(new File("src/test/resources/Shapes_header.csv.avro").toPath());
|
||||||
flowFile.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
|
flowFile.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ public class TestInferAvroSchema {
|
||||||
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
|
runner.assertTransferCount(InferAvroSchema.REL_SUCCESS, 1);
|
||||||
|
|
||||||
MockFlowFile data = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
|
MockFlowFile data = runner.getFlowFilesForRelationship(InferAvroSchema.REL_SUCCESS).get(0);
|
||||||
data.assertContentEquals(Paths.get("src/test/resources/Shapes_Header.csv.avro"));
|
data.assertContentEquals(Paths.get("src/test/resources/Shapes_header.csv.avro"));
|
||||||
data.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
|
data.assertAttributeEquals(CoreAttributes.MIME_TYPE.key(), "application/avro-binary");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue