8000 Add test for Definition with exeption InvalidArgument by janczer · Pull Request #19169 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Add test for Definition with exeption InvalidArgument #19169

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

Closed
wants to merge 2 commits into from
Closed
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
Add test for Definition (Coding standard)
  • Loading branch information
janczer committed Jun 24, 2016
commit a1ba0afcfe8eda8d6871f99ea504e4ac20fd7cd7
4 changes: 2 additions & 2 deletions src/Symfony/Component/Workflow/Tests/DefinitionTest.php
6379
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public function testAddPlaces()
*/
public function testAddPlacesInvalidArgument()
{
$places = ['a"', 'e"'];
$definiton = new Definition($places);
$places = array('a"', 'e"');
$definition = new Definition($places);
}

public function testSetInitialPlace()
Expand Down
0