Skip to content

Commit eaefa2d

Browse files
author
Joan He
authored
Merge pull request #801 from magento-south/MAGETWO-64115
[SOUTH] MAGETWO-64115: Copyright legacy test fails on 2.1
2 parents afbd183 + 75485ab commit eaefa2d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ env:
2020
- TEST_SUITE=integration INTEGRATION_INDEX=1
2121
- TEST_SUITE=integration INTEGRATION_INDEX=2
2222
- TEST_SUITE=integration INTEGRATION_INDEX=3
23-
- TEST_SUITE=static
2423
cache:
2524
apt: true
2625
directories: $HOME/.composer/cache

dev/tests/static/testsuite/Magento/Test/Legacy/CopyrightTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function testCopyright()
1717
$invoker(
1818
function ($filename) {
1919
$fileText = file_get_contents($filename);
20-
if (strpos($fileText, 'Copyright © ' . date('Y')) === false) {
20+
if (strpos($fileText, 'Copyright © 2013-' . date('Y')) === false) {
2121
$this->fail('Copyright is missing or has wrong year in ' . $filename);
2222
}
2323
},

0 commit comments

Comments
 (0)