Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Sep 13, 2018
1 parent f86a585 commit 6e6db69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/TestCase/Http/SessionTest.php
Expand Up @@ -77,7 +77,7 @@ class SessionTest extends TestCase
*
* @var array
*/
public $fixtures = ['core.cake_sessions', 'core.sessions'];
public $fixtures = ['core.CakeSessions', 'core.Sessions'];

/**
* tearDown method
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Routing/RequestActionTraitTest.php
Expand Up @@ -32,7 +32,7 @@ class RequestActionTraitTest extends TestCase
*
* @var string
*/
public $fixtures = ['core.Comments', 'core.Posts', 'core.test_plugin_comments'];
public $fixtures = ['core.Comments', 'core.Posts', 'core.TestPluginComments'];

/**
* Setup
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/TestSuite/FixtureManagerTest.php
Expand Up @@ -215,7 +215,7 @@ public function testFixturizePluginSubdirectory()
$this->loadPlugins(['TestPlugin']);

$test = $this->getMockBuilder('Cake\TestSuite\TestCase')->getMock();
$test->fixtures = ['plugin.TestPlugin.blog/comments'];
$test->fixtures = ['plugin.TestPlugin.Blog/Comments'];
$this->manager->fixturize($test);
$fixtures = $this->manager->loaded();
$this->assertCount(1, $fixtures);
Expand Down

0 comments on commit 6e6db69

Please sign in to comment.