From 6e60786abda9216878585f2c281fc9ffdbd49826 Mon Sep 17 00:00:00 2001 From: Greg Roach Date: Thu, 17 Mar 2022 19:18:51 +0000 Subject: CodeStyle - prefer single quotes --- tests/app/Reports/RightToLeftSupportTest.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'tests/app/Reports') diff --git a/tests/app/Reports/RightToLeftSupportTest.php b/tests/app/Reports/RightToLeftSupportTest.php index 0d389dd620..dd6a35d7fb 100644 --- a/tests/app/Reports/RightToLeftSupportTest.php +++ b/tests/app/Reports/RightToLeftSupportTest.php @@ -171,21 +171,21 @@ class RightToLeftSupportTest extends TestCase I18N::init('en-US', true); static::assertSame( 'foo
bar', - RightToLeftSupport::spanLtrRtl("foo
bar") + RightToLeftSupport::spanLtrRtl('foo
bar') ); static::assertSame( 'אבג
דהו', - RightToLeftSupport::spanLtrRtl("אבג
דהו") + RightToLeftSupport::spanLtrRtl('אבג
דהו') ); I18N::init('he', true); static::assertSame( 'foo
bar', - RightToLeftSupport::spanLtrRtl("foo
bar") + RightToLeftSupport::spanLtrRtl('foo
bar') ); static::assertSame( 'אבג
דהו', - RightToLeftSupport::spanLtrRtl("אבג
דהו") + RightToLeftSupport::spanLtrRtl('אבג
דהו') ); } @@ -213,11 +213,11 @@ class RightToLeftSupportTest extends TestCase I18N::init('he', true); static::assertSame( 'foo bar', - RightToLeftSupport::spanLtrRtl("foo bar") + RightToLeftSupport::spanLtrRtl('foo bar') ); static::assertSame( 'אבג דהו', - RightToLeftSupport::spanLtrRtl("אבג דהו") + RightToLeftSupport::spanLtrRtl('אבג דהו') ); static::assertSame( 'foo&bar', @@ -375,21 +375,21 @@ class RightToLeftSupportTest extends TestCase I18N::init('en-US', true); static::assertSame( '>foo<', - RightToLeftSupport::spanLtrRtl(">foo<") + RightToLeftSupport::spanLtrRtl('>foo<') ); static::assertSame( '>אבג<', - RightToLeftSupport::spanLtrRtl(">אבג<") + RightToLeftSupport::spanLtrRtl('>אבג<') ); I18N::init('he', true); static::assertSame( '>foo<', - RightToLeftSupport::spanLtrRtl(">foo<") + RightToLeftSupport::spanLtrRtl('>foo<') ); static::assertSame( '>אבג<', - RightToLeftSupport::spanLtrRtl(">אבג<") + RightToLeftSupport::spanLtrRtl('>אבג<') ); } @@ -403,13 +403,13 @@ class RightToLeftSupportTest extends TestCase I18N::init('en-US', true); static::assertSame( '123
456', - RightToLeftSupport::spanLtrRtl("123
456") + RightToLeftSupport::spanLtrRtl('123
456') ); I18N::init('he', true); static::assertSame( '‪123‬
‪456‬', - RightToLeftSupport::spanLtrRtl("123
456") + RightToLeftSupport::spanLtrRtl('123
456') ); } } -- cgit v1.3