Add reactive filter tag to reactive test.

This commit is contained in:
Gerrit Meier
2020-06-24 12:10:29 +02:00
parent c634c72c58
commit 73d1c024e8

View File

@@ -19,6 +19,7 @@
package org.neo4j.springframework.data.integration.reactive;
import static org.assertj.core.api.Assertions.*;
import static org.neo4j.springframework.data.test.Neo4jExtension.*;
import reactor.test.StepVerifier;
@@ -26,6 +27,7 @@ import java.util.Collections;
import java.util.List;
import java.util.function.Function;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.neo4j.driver.Driver;
import org.neo4j.driver.Record;
@@ -45,6 +47,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
*
* @author Michael J. Simons
*/
@Tag(NEEDS_REACTIVE_SUPPORT)
class ReactiveRelationshipsIT extends RelationshipsITBase {
@Autowired ReactiveRelationshipsIT(Driver driver) {