From b750343093c3ecc92ec656c52954d6877fcd4c6e Mon Sep 17 00:00:00 2001 From: traggerW Date: Fri, 15 Sep 2023 14:20:24 +0300 Subject: [PATCH] =?UTF-8?q?G5V8DT-22608=20=D0=90=D0=B2=D1=82=D0=BE=D1=81?= =?UTF-8?q?=D0=BE=D1=80=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D1=89=D0=B8=D0=BA=20?= =?UTF-8?q?=D0=BD=D0=B5=20=D1=81=D0=BE=D1=80=D1=82=D0=B8=D1=80=D1=83=D0=B5?= =?UTF-8?q?=D1=82=20=D0=B4=D0=BE=D1=87=D0=B5=D1=80=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B4=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=8B=20?= =?UTF-8?q?=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9=20=D0=B8=D0=B7=20=D0=B1=D0=B0=D0=B7=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v8codestyle/autosort/itests/SortServiceTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java b/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java index 0389cf58..d1a52f63 100644 --- a/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java +++ b/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java @@ -213,7 +213,7 @@ public class SortServiceTest } @Override - protected boolean isShouldNotifyAboutEvent() + protected boolean isShouldCountDownLatch() { return isBmObjectRemoved && isStortStarted; } @@ -284,7 +284,7 @@ public class SortServiceTest } @Override - protected boolean isShouldNotifyAboutEvent() + protected boolean isShouldCountDownLatch() { return moveCount == 2; } @@ -359,7 +359,7 @@ public class SortServiceTest } @Override - protected boolean isShouldNotifyAboutEvent() + protected boolean isShouldCountDownLatch() { return isBmObjectAdded && isStortStarted; } @@ -452,7 +452,7 @@ public class SortServiceTest } } } - if (isShouldNotifyAboutEvent()) + if (isShouldCountDownLatch()) { latch.countDown(); } @@ -470,6 +470,6 @@ public class SortServiceTest * * @return {@code true} if should count down latch, {@code false} otherwise */ - protected abstract boolean isShouldNotifyAboutEvent(); + protected abstract boolean isShouldCountDownLatch(); } }