From 5be33da5d30f2f8d3b7721a7253f67f190e9d076 Mon Sep 17 00:00:00 2001 From: Fabio Massimo Ercoli Date: Tue, 9 Feb 2021 14:30:29 +0100 Subject: [PATCH] HSEARCH-4142 Remove any reference to AnnotationMappingSmokeIT Not releated to this issue --- .../mapper/pojo/smoke/ProgrammaticMappingSmokeIT.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/smoke/ProgrammaticMappingSmokeIT.java b/integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/smoke/ProgrammaticMappingSmokeIT.java index 03cfec5a68b..96a0f9b90aa 100644 --- a/integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/smoke/ProgrammaticMappingSmokeIT.java +++ b/integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/smoke/ProgrammaticMappingSmokeIT.java @@ -506,16 +506,16 @@ public void search_multipleElementsProjection() { 2L, Arrays.asList( "text1", - reference( AnnotationMappingSmokeIT.IndexedEntity.INDEX, "0" ), + reference( IndexedEntity.INDEX, "0" ), LocalDate.of( 2017, 11, 1 ), - reference( AnnotationMappingSmokeIT.IndexedEntity.INDEX, "0" ), + reference( IndexedEntity.INDEX, "0" ), "text2" ), Arrays.asList( null, - reference( AnnotationMappingSmokeIT.YetAnotherIndexedEntity.INDEX, "1" ), + reference( YetAnotherIndexedEntity.INDEX, "1" ), LocalDate.of( 2017, 11, 2 ), - reference( AnnotationMappingSmokeIT.YetAnotherIndexedEntity.INDEX, "1" ), + reference( YetAnotherIndexedEntity.INDEX, "1" ), null ) )