From eb986d1e77680818552fee0820a916e007f8cece Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Fri, 26 Aug 2022 14:42:19 -0400 Subject: [PATCH] Schema registry test cleanup --- .../cloud/stream/schema/avro/AvroSchemaServiceManagerTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema-registry/spring-cloud-stream-schema-registry-client/src/test/java/org/springframework/cloud/stream/schema/avro/AvroSchemaServiceManagerTests.java b/schema-registry/spring-cloud-stream-schema-registry-client/src/test/java/org/springframework/cloud/stream/schema/avro/AvroSchemaServiceManagerTests.java index 10614629d..a7a2b0584 100644 --- a/schema-registry/spring-cloud-stream-schema-registry-client/src/test/java/org/springframework/cloud/stream/schema/avro/AvroSchemaServiceManagerTests.java +++ b/schema-registry/spring-cloud-stream-schema-registry-client/src/test/java/org/springframework/cloud/stream/schema/avro/AvroSchemaServiceManagerTests.java @@ -66,7 +66,7 @@ public class AvroSchemaServiceManagerTests { foodOrder.setRestaurant("Spring Kitchen"); foodOrder.setOrderDescription("avro makhani"); foodOrder.setCustomerAddress("world wide web"); - File file = new File("foodorder.avro"); + File file = new File("target/foodorder.avro"); DatumWriter datumWriter = defaultServiceManager.getDatumWriter(foodOrder.getClass(), schema); DataFileWriter dataFileWriter = new DataFileWriter(datumWriter);