Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Html Reader Non-UTF8 Charsets #4019

Merged
merged 6 commits into from
May 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct Wrong-Case Directory Name
  • Loading branch information
oleibman committed May 6, 2024
commit b2befb44264515b9e26ceb3fcf14332b3cc98958
2 changes: 1 addition & 1 deletion tests/PhpSpreadsheetTests/Reader/Html/HtmlCharsetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function testCharset(string $filename, string $expectedResult): void
$this->expectException(ReaderException::class);
$this->expectExceptionMessage('Failed to load');
}
$directory = 'tests/data/Reader/Html';
$directory = 'tests/data/Reader/HTML';
$reader = new Html();
$spreadsheet = $reader->load("$directory/$filename");
$sheet = $spreadsheet->getActiveSheet();
Expand Down
Loading