Skip to content

Commit

Permalink
php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasmullie committed Nov 23, 2016
1 parent b38b116 commit b473aff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/css/CSSTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,6 @@ public function dataProvider()
'p{border:1px solid #f00000}',
);


return $tests;
}

Expand Down
5 changes: 3 additions & 2 deletions tests/js/JSTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ function otherFuncName() {
a: ((500 * (x - y)) + 128) / 255, // [-128,127]
b: ((200 * (y - z)) + 128) / 255 // [-128,127]
};',
'return{l:((116*y)-16)/100,a:((500*(x-y))+128)/255,b:((200*(y-z))+128)/255}'
'return{l:((116*y)-16)/100,a:((500*(x-y))+128)/255,b:((200*(y-z))+128)/255}',
);

// https://github.com/matthiasmullie/minify/issues/143
Expand Down Expand Up @@ -887,7 +887,8 @@ function otherFuncName() {
'elem.getAttribute("type")!==null)+"/"+elem.type
var rprotocol=/^\/\//,prefilters={}',
'elem.getAttribute("type")!==null)+"/"+elem.type
var rprotocol=/^\/\//,prefilters={}');
var rprotocol=/^\/\//,prefilters={}',
);

// known minified files to help doublecheck changes in places not yet
// anticipated in these tests
Expand Down

0 comments on commit b473aff

Please sign in to comment.