mirror of
https://github.com/mrclay/minify.git
synced 2025-03-12 16:39:38 +01:00
fix assertNotContains arguments order
This commit is contained in:
parent
f9f3e3ca83
commit
badb6ce191
@ -15,7 +15,7 @@ class JsClosureCompilerTest extends PHPUnit_Framework_TestCase {
|
||||
$minOutput = Minify_JS_ClosureCompiler::minify($src);
|
||||
|
||||
// Too many recent calls to Closure Compiler API to test.\n";
|
||||
$this->assertNotContains($minOutput, 'Error(22): Too many compiles');
|
||||
$this->assertNotContains('Error(22): Too many compiles', $minOutput);
|
||||
|
||||
$this->assertSame($minExpected, $minOutput, 'Minify_JS_ClosureCompiler : Overall');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user