mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Fix small copy&paste issue in test cases
This commit is contained in:
@@ -108,7 +108,7 @@ public class RtlUtilsTest extends TestBase {
|
||||
boolean result = RtlUtils.isLtr(english1);
|
||||
assertTrue("Is Ltr Character failed", result);
|
||||
|
||||
result = RtlUtils.isLtr(english1);
|
||||
result = RtlUtils.isLtr(english2);
|
||||
assertTrue("Is Ltr Character failed", result);
|
||||
|
||||
result = RtlUtils.isLtr(hebrew1);
|
||||
@@ -138,7 +138,7 @@ public class RtlUtilsTest extends TestBase {
|
||||
boolean result = RtlUtils.isPunctuations(punctuation1);
|
||||
assertTrue("Is Punctuation Character failed", result);
|
||||
|
||||
result = RtlUtils.isPunctuations(punctuation1);
|
||||
result = RtlUtils.isPunctuations(punctuation2);
|
||||
assertTrue("Is Punctuation Character failed", result);
|
||||
|
||||
result = RtlUtils.isPunctuations(english1);
|
||||
|
||||
Reference in New Issue
Block a user