1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-22 21:10:21 +02:00

Fix small copy&paste issue in test cases

This commit is contained in:
cpfeiffer 2018-09-05 20:49:15 +02:00
parent e67398af87
commit bd162f6319

View File

@ -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);