Skip to content

Commit fd1c0e2

Browse files
committed
Tests: code style fixup: tabs instead of spaces
1 parent 67af777 commit fd1c0e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/phpunit/tests/date/dateI18n.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,14 +228,14 @@ public function data_should_handle_dst() {
228228
public function test_adjusts_ordinal_based_on_locale() {
229229
switch_to_locale( 'en_US' );
230230
$this->assertSame( '8th', date_i18n( 'jS', 1733618500 ) );
231-
restore_previous_locale();
231+
restore_previous_locale();
232232

233233
switch_to_locale( 'de_DE' );
234234
$this->assertSame( '8.', date_i18n( 'jS', 1733618500 ) );
235-
restore_previous_locale();
235+
restore_previous_locale();
236236

237237
switch_to_locale( 'es_ES' );
238238
$this->assertSame( '8.º', date_i18n( 'jS', 1733618500 ) );
239-
restore_previous_locale();
239+
restore_previous_locale();
240240
}
241241
}

0 commit comments

Comments
 (0)