mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 12:56:49 +01:00
Fix small copy&paste issue in test cases
This commit is contained in:
parent
e67398af87
commit
bd162f6319
@ -108,7 +108,7 @@ public class RtlUtilsTest extends TestBase {
|
|||||||
boolean result = RtlUtils.isLtr(english1);
|
boolean result = RtlUtils.isLtr(english1);
|
||||||
assertTrue("Is Ltr Character failed", result);
|
assertTrue("Is Ltr Character failed", result);
|
||||||
|
|
||||||
result = RtlUtils.isLtr(english1);
|
result = RtlUtils.isLtr(english2);
|
||||||
assertTrue("Is Ltr Character failed", result);
|
assertTrue("Is Ltr Character failed", result);
|
||||||
|
|
||||||
result = RtlUtils.isLtr(hebrew1);
|
result = RtlUtils.isLtr(hebrew1);
|
||||||
@ -138,7 +138,7 @@ public class RtlUtilsTest extends TestBase {
|
|||||||
boolean result = RtlUtils.isPunctuations(punctuation1);
|
boolean result = RtlUtils.isPunctuations(punctuation1);
|
||||||
assertTrue("Is Punctuation Character failed", result);
|
assertTrue("Is Punctuation Character failed", result);
|
||||||
|
|
||||||
result = RtlUtils.isPunctuations(punctuation1);
|
result = RtlUtils.isPunctuations(punctuation2);
|
||||||
assertTrue("Is Punctuation Character failed", result);
|
assertTrue("Is Punctuation Character failed", result);
|
||||||
|
|
||||||
result = RtlUtils.isPunctuations(english1);
|
result = RtlUtils.isPunctuations(english1);
|
||||||
|
Loading…
Reference in New Issue
Block a user