summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/file_helper_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2019-10-08 09:37:45 +0200
committerGitHub <noreply@github.com>2019-10-08 09:37:45 +0200
commit6f21b77955e5089bc07881adb209d2c23d9ba461 (patch)
tree8341b462ae9ddd09a6f43659711c6363fda473e5 /tests/codeigniter/helpers/file_helper_test.php
parent5cd4c8e67c1f096b6cfbc4994608952c59b6dff8 (diff)
parent505f8491b056c3cd93fc73d61730963eddab6502 (diff)
Merge pull request #5842 from sapics/chore/fix-indent
Fix indentation / clear whitespace
Diffstat (limited to 'tests/codeigniter/helpers/file_helper_test.php')
-rw-r--r--tests/codeigniter/helpers/file_helper_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/codeigniter/helpers/file_helper_test.php b/tests/codeigniter/helpers/file_helper_test.php
index 5ed8cb5c0..dd74ee46b 100644
--- a/tests/codeigniter/helpers/file_helper_test.php
+++ b/tests/codeigniter/helpers/file_helper_test.php
@@ -119,8 +119,8 @@ class File_helper_Test extends CI_TestCase {
// --------------------------------------------------------------------
- public function test_write_file()
- {
+ public function test_write_file()
+ {
$content = 'Jack and Jill went up the mountain to fight a billy goat.';
$file = vfsStream::newFile('write.txt', 0777)
@@ -129,6 +129,6 @@ class File_helper_Test extends CI_TestCase {
->at($this->_test_dir);
$this->assertTrue(write_file(vfsStream::url('write.txt'), $content));
- }
+ }
}