Skip to content

Commit 86085bf

Browse files
committed
FIX test
1 parent 6b63655 commit 86085bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/FileEncodingTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ public function setUp()
1515
public function test_encoding_iso88591_as_UTF8()
1616
{
1717
$encoding = new FileEncoding();
18-
$result = FileEncoding->encodeFile('iso88591.txt', 'UTF-8', 'UTF-8,ISO-8859-1,WINDOWS-1252');
18+
$result = $encoding->encodeFile('iso88591.txt', 'UTF-8', 'UTF-8,ISO-8859-1,WINDOWS-1252');
1919
$this->assertTrue($result);
2020
}
2121

2222
/** @test */
2323
public function test_encoding_UTF8_as_UTF8()
2424
{
2525
$encoding = new FileEncoding();
26-
$result = FileEncoding->encodeFile('utf8.txt');
26+
$result = $encoding->encodeFile('utf8.txt');
2727
$this->assertTrue($result);
2828
}
2929

3030
/** @test */
3131
public function test_encoding_file_not_exists()
3232
{
3333
$encoding = new FileEncoding();
34-
$result = FileEncoding->encodeFile('test.txt');
34+
$result = $encoding->encodeFile('test.txt');
3535
$this->assertFalse($result);
3636
}
3737
}

0 commit comments

Comments
 (0)