File tree 2 files changed +1
-3
lines changed
groovy/io/micronaut/data/tck/tests
java/io/micronaut/data/tck/repositories
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import io.micronaut.data.tck.repositories.JsonEntityRepository
26
26
import io.micronaut.data.tck.repositories.SaleItemRepository
27
27
import io.micronaut.data.tck.repositories.SaleRepository
28
28
import spock.lang.AutoCleanup
29
- import spock.lang.PendingFeature
30
29
import spock.lang.Shared
31
30
import spock.lang.Specification
32
31
@@ -157,7 +156,6 @@ abstract class AbstractJSONSpec extends Specification {
157
156
cleanup()
158
157
}
159
158
160
- @PendingFeature (reason = " Temporary disable as it is failing" )
161
159
void " test read and write json with constructor args" () {
162
160
given :
163
161
def sale = saleRepository. save(new Sale (name : " test 1" ))
Original file line number Diff line number Diff line change 24
24
public interface SaleItemRepository extends CrudRepository <SaleItem , Long > {
25
25
26
26
@ Override
27
- @ Join (value = "sale" , type = Join .Type .LEFT )
27
+ @ Join (value = "sale" , type = Join .Type .FETCH )
28
28
Optional <SaleItem > findById (Long id );
29
29
}
You can’t perform that action at this time.
0 commit comments