Skip to content

Commit

Permalink
Fix Korean test
Browse files Browse the repository at this point in the history
  • Loading branch information
matriphe committed Mar 17, 2024
1 parent a5fb655 commit 409f4fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ISO639Test.php
Expand Up @@ -37,7 +37,7 @@ public function testNativeISO6391()
$this->assertSame('basa Jawa', $this->iso->nativeByCode1('jv'));
$this->assertSame('हिन्दी, हिंदी', $this->iso->nativeByCode1('hi'));
$this->assertSame('ไทย', $this->iso->nativeByCode1('th'));
$this->assertSame('한국어, 조선어', $this->iso->nativeByCode1('ko'));
$this->assertSame('한국어', $this->iso->nativeByCode1('ko'));
$this->assertSame('日本語 (にほんご)', $this->iso->nativeByCode1('ja'));
$this->assertSame('中文 (Zhōngwén), 汉语, 漢語', $this->iso->nativeByCode1('zh'));
$this->assertSame('Русский', $this->iso->nativeByCode1('ru'));
Expand Down Expand Up @@ -75,7 +75,7 @@ public function testNativeISO6392t()
$this->assertSame('basa Jawa', $this->iso->nativeByCode2t('jav'));
$this->assertSame('हिन्दी, हिंदी', $this->iso->nativeByCode2t('hin'));
$this->assertSame('ไทย', $this->iso->nativeByCode2t('tha'));
$this->assertSame('한국어, 조선어', $this->iso->nativeByCode2t('kor'));
$this->assertSame('한국어', $this->iso->nativeByCode2t('kor'));
$this->assertSame('日本語 (にほんご)', $this->iso->nativeByCode2t('jpn'));
$this->assertSame('中文 (Zhōngwén), 汉语, 漢語', $this->iso->nativeByCode2t('zho'));
$this->assertSame('Русский', $this->iso->nativeByCode2t('rus'));
Expand Down Expand Up @@ -113,7 +113,7 @@ public function testNativeISO6392b()
$this->assertSame('basa Jawa', $this->iso->nativeByCode2b('jav'));
$this->assertSame('हिन्दी, हिंदी', $this->iso->nativeByCode2b('hin'));
$this->assertSame('ไทย', $this->iso->nativeByCode2b('tha'));
$this->assertSame('한국어, 조선어', $this->iso->nativeByCode2b('kor'));
$this->assertSame('한국어', $this->iso->nativeByCode2b('kor'));
$this->assertSame('日本語 (にほんご)', $this->iso->nativeByCode2b('jpn'));
$this->assertSame('中文 (Zhōngwén), 汉语, 漢語', $this->iso->nativeByCode2b('chi'));
$this->assertSame('Русский', $this->iso->nativeByCode2b('rus'));
Expand Down Expand Up @@ -151,7 +151,7 @@ public function testNativeISO6393()
$this->assertSame('basa Jawa', $this->iso->nativeByCode3('jav'));
$this->assertSame('हिन्दी, हिंदी', $this->iso->nativeByCode3('hin'));
$this->assertSame('ไทย', $this->iso->nativeByCode3('tha'));
$this->assertSame('한국어, 조선어', $this->iso->nativeByCode3('kor'));
$this->assertSame('한국어', $this->iso->nativeByCode3('kor'));
$this->assertSame('日本語 (にほんご)', $this->iso->nativeByCode3('jpn'));
$this->assertSame('中文 (Zhōngwén), 汉语, 漢語', $this->iso->nativeByCode3('zho'));
$this->assertSame('Русский', $this->iso->nativeByCode3('rus'));
Expand Down

0 comments on commit 409f4fe

Please sign in to comment.