Skip to content

Commit

Permalink
minor #30587 [Intl] Fix test (ro0NL)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.4 branch.

Discussion
----------

[Intl] Fix test

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | yes/no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | #...   <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | symfony/symfony-docs#... <!-- required for new features -->

Creates some weird path, that breaks the next tests.

Commits
-------

226f522 [Intl] Fix test
  • Loading branch information
fabpot committed Mar 17, 2019
2 parents 83aeef1 + 226f522 commit 42c08b8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ public function testItThrowsAnExceptionIfInitialisedWithNonGitDirectory()
$this->setExpectedException(RuntimeException::class);
}

@mkdir($this->targetDir, '0777', true);
@mkdir($this->targetDir, 0777, true);

new GitRepository($this->targetDir);
}
Expand Down

0 comments on commit 42c08b8

Please sign in to comment.