Skip to content

Commit

Permalink
Make tests pass on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 26, 2016
1 parent 0e6a509 commit 60af9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Network/ResponseTest.php
Expand Up @@ -1550,7 +1550,7 @@ public function testGetFile()
$response->file(TEST_APP . 'vendor/css/test_asset.css');
$file = $response->getFile();
$this->assertInstanceOf('Cake\Filesystem\File', $file, 'Should get a file');
$this->assertSame(TEST_APP . 'vendor/css/test_asset.css', $file->path, 'Path should match');
$this->assertPathEquals(TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css', $file->path);
}

This comment has been minimized.

Copy link
@gemal

gemal Feb 26, 2016

Contributor

wasn't DS deprecated?

This comment has been minimized.

Copy link
@antograssiot

antograssiot Feb 26, 2016

Contributor

DS is defined in the bootstrap used with the test suite.

This comment has been minimized.

Copy link
@gemal

gemal Feb 26, 2016

Contributor

OK. I just saw this commit the other day:
2fb0343

This comment has been minimized.

Copy link
@markstory

markstory Feb 26, 2016

Author Member

Yeah DS exists in the test suite 😄


/**
Expand Down

0 comments on commit 60af9a8

Please sign in to comment.