Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
Update tests that failed due to 4.1 association case changes.
  • Loading branch information
markstory committed Jul 8, 2020
1 parent 5fbc77d commit 0a94e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Command/ModelCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public function testApplyAssociations()

$command->applyAssociations($articles, $assocs);
$new = $articles->associations()->keys();
$expected = ['users', 'todotasks', 'todolabels'];
$expected = ['Users', 'TodoTasks', 'TodoLabels'];
$this->assertEquals($expected, $new);
}

Expand Down

0 comments on commit 0a94e42

Please sign in to comment.