Skip to content

Commit eabcee7

Browse files
committed
Polishing.
Standardized GitHub references of tests. Original pull request spring-projects/spring-data-r2dbc/pull/691
1 parent 36c332b commit eabcee7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQueryUnitTests.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void createsQueryToFindAllEntitiesByOneOfTwoStringAttributes() throws Exception
176176
.where(TABLE + ".last_name = $1 OR (" + TABLE + ".first_name = $2)");
177177
}
178178

179-
@Test // GH-282, gh-349
179+
@Test // GH-282, GH-349
180180
void createsQueryToFindAllEntitiesByDateAttributeBetween() throws Exception {
181181

182182
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByDateOfBirthBetween", Date.class, Date.class);
@@ -518,7 +518,7 @@ void createsQueryToFindAllEntitiesByIntegerAttributeNotIn() throws Exception {
518518
.where(TABLE + ".age NOT IN ($1)");
519519
}
520520

521-
@Test // GH-282, gh-698
521+
@Test // GH-282, GH-698
522522
void createsQueryToFindAllEntitiesByBooleanAttributeTrue() throws Exception {
523523

524524
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByActiveTrue");
@@ -532,7 +532,7 @@ void createsQueryToFindAllEntitiesByBooleanAttributeTrue() throws Exception {
532532
.where(TABLE + ".active = $1");
533533
}
534534

535-
@Test // GH-282, gh-698
535+
@Test // GH-282, GH-698
536536
void createsQueryToFindAllEntitiesByBooleanAttributeFalse() throws Exception {
537537

538538
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByActiveFalse");

0 commit comments

Comments
 (0)