Update BaseDashboardServiceTest.java

This commit is contained in:
Igor Kulikov 2021-07-30 11:41:09 +03:00 committed by GitHub
parent 89644e7de4
commit 2ce04c3728
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,7 +248,7 @@ public abstract class BaseDashboardServiceTest extends AbstractServiceTest {
return o1.getTitle().compareTo(o2.getTitle());
} else if (order1 == null && order2 != null) {
return 1;
} else if (order2 == null) {
} else if (order2 == null) {
return -1;
} else {
return order1 - order2;