1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 11:01:48 +02:00

[ticket/10992] Changed octetstream to octet-stream

PHPBB3-10992
This commit is contained in:
Fyorl
2012-07-13 20:09:11 +01:00
committed by Andreas Fischer
parent e9a1189bfc
commit fa4eaeb306

View File

@@ -50,7 +50,7 @@ class phpbb_functional_fileupload_form_test extends phpbb_functional_test_case
public function test_invalid_extension()
{
$crawler = $this->upload_file('illegal-extension.bif', 'application/octetstream');
$crawler = $this->upload_file('illegal-extension.bif', 'application/octet-stream');
$this->assertEquals($this->lang('DISALLOWED_EXTENSION', 'bif'), $crawler->filter('p.error')->text());
}