mirror of
https://github.com/mrclay/minify.git
synced 2025-08-01 03:40:20 +02:00
fix assertNotContains arguments order
This commit is contained in:
committed by
Steve Clay
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');
|
||||
}
|
||||
|
Reference in New Issue
Block a user