Skip to content

Commit

Permalink
Issue mikehaertl#7: Fix setlocale() in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehaertl committed Jul 7, 2015
1 parent 81c78e9 commit c690554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class CommandTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
// Default in some installations
setlocale('LC_CTYPE', 'C');
setlocale(LC_CTYPE, 'C');
}

// Create command from command string
Expand Down

0 comments on commit c690554

Please sign in to comment.